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
273be1333385ccda2cb3745984aaaf1e13addff8
diff --git a/lib/googleauth/user_authorizer.rb b/lib/googleauth/user_authorizer.rb index <HASH>..<HASH> 100644 --- a/lib/googleauth/user_authorizer.rb +++ b/lib/googleauth/user_authorizer.rb @@ -40,15 +40,14 @@ module Google # # credentials = authorizer.get_credentials(user_id) # if credentials.n...
Fix CLI snippet in class docs Snippet was slightly outdated, based on an earlier revision.
googleapis_google-auth-library-ruby
train
rb
c7ff9ec292343915e41afcff0fdff62906f86765
diff --git a/tasker/install.js b/tasker/install.js index <HASH>..<HASH> 100644 --- a/tasker/install.js +++ b/tasker/install.js @@ -17,7 +17,7 @@ const sourceDir = utils.pathResolve(global.conf.ui.paths.source.root); let binNpm = 'npm'; // Spawn npm.cmd if Windows and not BASH. -if (process.env.ComSpec === 'C:\\WIND...
accounting for varying case in process.env.ComSpec in windows
electric-eloquence_fepper-npm
train
js
9f763427e615ee777427d2b070b168118d73c491
diff --git a/MAVProxy/tools/MAVExplorer.py b/MAVProxy/tools/MAVExplorer.py index <HASH>..<HASH> 100755 --- a/MAVProxy/tools/MAVExplorer.py +++ b/MAVProxy/tools/MAVExplorer.py @@ -775,8 +775,8 @@ def extract_files(): if m is None: break if not m.FileName in ret: - ret[m.FileName...
MAVExplorer: allow binary files in FILE
ArduPilot_MAVProxy
train
py
5856afb100f1c8eea5473a18953436808bdf9c1f
diff --git a/lib/Project.js b/lib/Project.js index <HASH>..<HASH> 100644 --- a/lib/Project.js +++ b/lib/Project.js @@ -20,6 +20,7 @@ module.exports = function(S) { // Default properties this.name = null; this.custom = {}; + this.plugins = []; this.functions = {}; this.s...
added Plugins array to Project class. Closes #<I>
serverless_serverless
train
js
df69c9e3a25b726f7645fed9487e108f1d9b472c
diff --git a/lib/workers/pr/index.js b/lib/workers/pr/index.js index <HASH>..<HASH> 100644 --- a/lib/workers/pr/index.js +++ b/lib/workers/pr/index.js @@ -175,6 +175,11 @@ async function ensurePr(prConfig) { /(https?:\/\/github.com\/[^/]*\/[^/]*\/(issues|pull)\/\w+)/g, '`$1`' ); + logger.trace('Es...
fix: escape links to GitHub usernames
renovatebot_renovate
train
js
c13af5f4d2f61f92b7404e274bbc3d7af60855ea
diff --git a/lib/ronin/platform/extension.rb b/lib/ronin/platform/extension.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/platform/extension.rb +++ b/lib/ronin/platform/extension.rb @@ -168,7 +168,7 @@ module Ronin # Returns +true+ if the extension has been setup, returns +false+ # otherwise. # - ...
Renamed was_setup? and was_toredown? to setup? and toredown?, respectively.
ronin-ruby_ronin
train
rb
aafc7d686304e3b0b0cecdf4182adc7402c57be3
diff --git a/android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java b/android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java index <HASH>..<HASH> 100644 --- a/android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java +++ b/android/guava-tests/test/com/google/common/col...
Reduce the number of different ranges TreeRangeMap attempts to test with; these were taking exorbitant amounts of time in Android tests. (See e.g. [] where testPutAll took over two minutes, and that wasn't the only TreeRangeMap method that took multiple minutes. After this change, putAll takes 8 seconds. [] -------...
google_guava
train
java
a597325eeb63fb75bb5ef2b14842b62734f5d906
diff --git a/src/models/ImgixTransformedImageModel.php b/src/models/ImgixTransformedImageModel.php index <HASH>..<HASH> 100644 --- a/src/models/ImgixTransformedImageModel.php +++ b/src/models/ImgixTransformedImageModel.php @@ -92,7 +92,11 @@ class ImgixTransformedImageModel implements TransformedImageInterface ...
Fixes missing width and height when using Imgix and neither width or height was set in the transform (fixes #<I>).
aelvan_Imager-Craft
train
php
f9c33c1b8eebe955413e4343e54db15fe098b848
diff --git a/src/MvcCore/Ext/Forms/View.php b/src/MvcCore/Ext/Forms/View.php index <HASH>..<HASH> 100644 --- a/src/MvcCore/Ext/Forms/View.php +++ b/src/MvcCore/Ext/Forms/View.php @@ -554,7 +554,7 @@ class View extends \MvcCore\View { $result[] = '<thead class="errors">'; foreach ($errors as $errorMessageAndFi...
Table form rendering - each error in <th><div> element.
mvccore_ext-form
train
php
50f4c31d31eaab00e0d872e28ee43aa43e38b192
diff --git a/discord/shard.py b/discord/shard.py index <HASH>..<HASH> 100644 --- a/discord/shard.py +++ b/discord/shard.py @@ -46,6 +46,7 @@ class EventType: resume = 2 identify = 3 terminate = 4 + clean_close = 5 class EventItem: __slots__ = ('type', 'shard', 'error') @@ -411,6 +412,8 @@ clas...
Terminate shard processing queue when a clean close is encountered. Fix #<I>
Rapptz_discord.py
train
py
3c73e25834f5c8c87f3363fefb29d4a0ffd47563
diff --git a/spec/unit/converters/convert_bool_spec.rb b/spec/unit/converters/convert_bool_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/converters/convert_bool_spec.rb +++ b/spec/unit/converters/convert_bool_spec.rb @@ -19,6 +19,7 @@ RSpec.describe TTY::Prompt::Question, 'convert bool' do expect(response).t...
Change spec to match new output.
piotrmurach_tty-prompt
train
rb
08c0f79902de5738ddfed782472ab451eacc8c9c
diff --git a/adafruit_seesaw/digitalio.py b/adafruit_seesaw/digitalio.py index <HASH>..<HASH> 100644 --- a/adafruit_seesaw/digitalio.py +++ b/adafruit_seesaw/digitalio.py @@ -45,7 +45,7 @@ class DigitalIO: self._seesaw = seesaw self._pin = pin self._drive_mode = digitalio.DriveMode.PUSH_PULL ...
digitalio: Initialize direction to INPUT None is an invalid direction
adafruit_Adafruit_CircuitPython_seesaw
train
py
054fb9e2b1900cb6d4ef0a50a9c2aad0219eb33b
diff --git a/blimpy/filterbank.py b/blimpy/filterbank.py index <HASH>..<HASH> 100755 --- a/blimpy/filterbank.py +++ b/blimpy/filterbank.py @@ -554,7 +554,10 @@ class Filterbank(object): plot_f, plot_data = self.grab_data(f_start, f_stop, if_id) - plot_kurtosis = scipy.stats.kurtosis(plot_data, axis=...
Have kurtosis now under try, to avoid issues.
UCBerkeleySETI_blimpy
train
py
0818a6ed5467f5cc76f67b71eb33f2c3eb366358
diff --git a/src/Composer/Repository/PlatformRepository.php b/src/Composer/Repository/PlatformRepository.php index <HASH>..<HASH> 100644 --- a/src/Composer/Repository/PlatformRepository.php +++ b/src/Composer/Repository/PlatformRepository.php @@ -147,16 +147,22 @@ class PlatformRepository extends ArrayRepository ...
Previous attempt would cause <I>aa == <I>b
composer_composer
train
php
b4f9e452ec10302194ae38a77dc800617bb8bfce
diff --git a/build/nodegame-full.js b/build/nodegame-full.js index <HASH>..<HASH> 100644 --- a/build/nodegame-full.js +++ b/build/nodegame-full.js @@ -12422,7 +12422,7 @@ GameMsg.prototype.toEvent = function () { // TODO: check how to init - this.setCurrentGameStage(new GameStage()); + this.s...
removed second early publish state when socket is not open
nodeGame_nodegame-client
train
js,js
36c743586963b5f8f721f72706ed9b1f416d4c53
diff --git a/components/rails/rails-core/src/main/java/org/torquebox/rails/core/boot.rb b/components/rails/rails-core/src/main/java/org/torquebox/rails/core/boot.rb index <HASH>..<HASH> 100644 --- a/components/rails/rails-core/src/main/java/org/torquebox/rails/core/boot.rb +++ b/components/rails/rails-core/src/main/jav...
If running Rails2, go ahead and hide Rails3 railstie to avoid ar-jdbc-adapter from getting confused.
torquebox_torquebox
train
rb
1f9deea9249a6f57be0fdc65edfdebc9f927351c
diff --git a/libkbfs/merkle.go b/libkbfs/merkle.go index <HASH>..<HASH> 100644 --- a/libkbfs/merkle.go +++ b/libkbfs/merkle.go @@ -18,8 +18,8 @@ type MerkleRoot struct { Timestamp int64 `codec:"ts"` Hash merkle.Hash `codec:"h"` PrevRoot merkle.Hash `codec:"pr"` - EPubK...
mdmerkle: comment about why there isn't always epk/nonce
keybase_client
train
go
e9b5f493cbdd12907d9e44c8097a4827279b5f42
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name='generic-request-signer', - version='0.2.3', + version='0.3.0', author='imtapps', url='https://github.com/imtapps/generic-request-sig...
Version: bump to <I>
imtapps_generic-request-signer
train
py
2a98a57ec94af246f7bee3063cb16e38c4b9ee28
diff --git a/lib/yard/handlers/base.rb b/lib/yard/handlers/base.rb index <HASH>..<HASH> 100644 --- a/lib/yard/handlers/base.rb +++ b/lib/yard/handlers/base.rb @@ -483,9 +483,8 @@ module YARD # @return [void] # @since 0.8.0 def register_transitive_tags(object) - return unless object + ...
Condition doesn't have to be in loop
lsegal_yard
train
rb
2b9560bff0903e7e652080720ecbe4efde8acdc2
diff --git a/sigh/lib/sigh/version.rb b/sigh/lib/sigh/version.rb index <HASH>..<HASH> 100644 --- a/sigh/lib/sigh/version.rb +++ b/sigh/lib/sigh/version.rb @@ -1,3 +1,3 @@ module Sigh - VERSION = "1.10.3" + VERSION = "1.10.4" end
[sigh] Version bump (#<I>) * Improve output on which provisioning file are being skipped * Update spaceship to work with the new Apple Developer Portal API
fastlane_fastlane
train
rb
b765b9caa0217e0b982fc449e1f189a2398a5d53
diff --git a/autotest/sqlserveradapter.rb b/autotest/sqlserveradapter.rb index <HASH>..<HASH> 100644 --- a/autotest/sqlserveradapter.rb +++ b/autotest/sqlserveradapter.rb @@ -1,4 +1,5 @@ require 'autotest' +require 'activesupport' class Autotest::Sqlserveradapter < Autotest @@ -31,7 +32,7 @@ class Autotest::Sqlse...
Require activesupport for Autotest::Sqlserveradapter.
rails-sqlserver_activerecord-sqlserver-adapter
train
rb
8fa04c5786f15affe843eba600bccd557cb2a89d
diff --git a/ui/src/utils/colors.js b/ui/src/utils/colors.js index <HASH>..<HASH> 100644 --- a/ui/src/utils/colors.js +++ b/ui/src/utils/colors.js @@ -241,12 +241,12 @@ export function blend (fgColor, bgColor) { r1 = rgb1.r / 255, g1 = rgb1.g / 255, b1 = rgb1.b / 255, - a1 = rgb1.a !== void 0 ? rgb1.a...
fix(colors): blend alpha after textToRgb is 0-<I> (#<I>)
quasarframework_quasar
train
js
cd7ec9c0dad71f0cdbf5cccf6ce2043ee91e5c96
diff --git a/queryize.js b/queryize.js index <HASH>..<HASH> 100644 --- a/queryize.js +++ b/queryize.js @@ -803,6 +803,20 @@ var queryize = function (baseAttributes) { var query = builders[attributes.builder](); return convertNamedParameters(query); + }, + + run: function (connection, options, callback) { + ...
Added run() function as shortcut for node-mysql query command.
Twipped_QueryizeJS
train
js
111a6c25432b6d2080bc730b90d07b50c7847389
diff --git a/lib/functions/index.js b/lib/functions/index.js index <HASH>..<HASH> 100644 --- a/lib/functions/index.js +++ b/lib/functions/index.js @@ -647,7 +647,13 @@ exports['-adjust'] = function adjust(color, prop, amount){ prop = { hue: 'h', saturation: 's', lightness: 'l' }[prop.string]; if (!prop) throw new...
Making 'lighten by %' function push color closer to white
stylus_stylus
train
js
afd97d97413ecf4e634d70dee20f79d7b95b735d
diff --git a/js/binance.js b/js/binance.js index <HASH>..<HASH> 100644 --- a/js/binance.js +++ b/js/binance.js @@ -701,10 +701,15 @@ module.exports = class binance extends Exchange { throw new ExchangeError (this.id + ' fetchOrder requires a symbol param'); await this.loadMarkets (); let ...
added support for origClientOrderId to binance fix #<I>
ccxt_ccxt
train
js
95963e3cedeb9b7371770414037654e675f325ff
diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py index <HASH>..<HASH> 100644 --- a/ryu/ofproto/ofproto_v1_3_parser.py +++ b/ryu/ofproto/ofproto_v1_3_parser.py @@ -1405,9 +1405,9 @@ class OFPPortStatus(MsgBase): def parser(cls, datapath, version, msg_type, msg_len, xid, buf): ...
of<I>: fix OFPPortStatus parser A correction same as OF<I>.
osrg_ryu
train
py
9e542c02244eeca253695bd1e0605681ad1be30f
diff --git a/test/events.js b/test/events.js index <HASH>..<HASH> 100644 --- a/test/events.js +++ b/test/events.js @@ -384,4 +384,8 @@ $(document).ready(function() { Backbone.trigger('all'); }); + test("once without a callback is a noop", 0, function() { + _.extend({}, Backbone.Events).once('event').trigg...
Add test for once without callback.
jashkenas_backbone
train
js
0db87be252923cdecfe1476b1237075afa2d2aa9
diff --git a/lib/nssocket.js b/lib/nssocket.js index <HASH>..<HASH> 100644 --- a/lib/nssocket.js +++ b/lib/nssocket.js @@ -149,7 +149,7 @@ NsSocket.prototype.send = function send(event, data, callback) { // // ### function data (event, callback) -// #### @event {Array|string} Namespaced `data` event to listen to +/...
[api] Added .dataOnce
foreverjs_nssocket
train
js
4e5e5686e9647ec06a4d44ec9a86017fcd9f880d
diff --git a/PhealMemCache.php b/PhealMemCache.php index <HASH>..<HASH> 100644 --- a/PhealMemCache.php +++ b/PhealMemCache.php @@ -71,7 +71,8 @@ class PhealMemcache implements PhealCacheInterface protected function getKey($userid, $apikey, $scope, $name, $args) { $key = "$userid|$apikey|$scope|$name"; ...
* renamed file to match classname * fixed key generation (apikey/userid should be excluded)
3rdpartyeve_phealng
train
php
8f1663657e988cd0bc14ffda37b543068d490812
diff --git a/examples/dsfiles.py b/examples/dsfiles.py index <HASH>..<HASH> 100755 --- a/examples/dsfiles.py +++ b/examples/dsfiles.py @@ -28,10 +28,10 @@ class DatastoreFiles(BaseScript): def list_files(self): for o in self.vim.find_entity_list('Datacenter', properties=['name', 'datastore']): ...
Use info as name is not set (on ESX <I>), I will soon be able to work agains ESX 4.x servers. Catch AttributeError when no file has been set.
psphere-project_psphere
train
py
4cbef637bcd877160a5278e3a6152be420d69eb3
diff --git a/lib/fluent/plugin/in_forward.rb b/lib/fluent/plugin/in_forward.rb index <HASH>..<HASH> 100644 --- a/lib/fluent/plugin/in_forward.rb +++ b/lib/fluent/plugin/in_forward.rb @@ -200,7 +200,7 @@ class ForwardInput < Input def on_heartbeat_request(host, port, msg) #$log.trace "heartbeat request from #{...
out_forward: reverted on_heartbeat_request not to return received msg [#<I>]
fluent_fluentd
train
rb,rb
c3ad1fb52e79d2bfa6d70fbd49ae548b77060e5a
diff --git a/src/file.js b/src/file.js index <HASH>..<HASH> 100644 --- a/src/file.js +++ b/src/file.js @@ -1,5 +1,6 @@ var fs = require("graceful-fs"); var cp = require("child_process"); +var crypto = require("crypto"); var libxml = require("libxmljs"); var Iconv = require("iconv").Iconv;
Forgot to include the crypto module.
jeresig_stack-scraper
train
js
5f2bdab8a1f312715b0cf3f78d1634210c087146
diff --git a/bel_lang/ast.py b/bel_lang/ast.py index <HASH>..<HASH> 100644 --- a/bel_lang/ast.py +++ b/bel_lang/ast.py @@ -55,10 +55,16 @@ class BELAst(object): else: bel_relation = self.spec['relation_to_long'].get(self.bel_relation, None) + bel_subject = self.bel_subject.to_...
fixed to_components for nested statement
belbio_bel
train
py
2439f4fdf26fbfd9e0b24f5eba77429ab0601ede
diff --git a/sirmordred/_version.py b/sirmordred/_version.py index <HASH>..<HASH> 100644 --- a/sirmordred/_version.py +++ b/sirmordred/_version.py @@ -1,2 +1,2 @@ # Versions compliant with PEP 440 https://www.python.org/dev/peps/pep-0440 -__version__ = "0.1.38" +__version__ = "0.1.39"
[release] Update version number to <I>
chaoss_grimoirelab-sirmordred
train
py
ede2c43b6db48edfecc43dba0396c29da7c8e92d
diff --git a/packages/ringcentral-widgets-test/test/integration-test/QuickAccess/QuickAccess.spec.js b/packages/ringcentral-widgets-test/test/integration-test/QuickAccess/QuickAccess.spec.js index <HASH>..<HASH> 100644 --- a/packages/ringcentral-widgets-test/test/integration-test/QuickAccess/QuickAccess.spec.js +++ b/p...
fix quickaccess settings name in It (#<I>)
ringcentral_ringcentral-js-widgets
train
js
5e2d52549ff4651ccce8958d5fc8c57ab3d125a6
diff --git a/SpiffWorkflow/storage/DictionarySerializer.py b/SpiffWorkflow/storage/DictionarySerializer.py index <HASH>..<HASH> 100644 --- a/SpiffWorkflow/storage/DictionarySerializer.py +++ b/SpiffWorkflow/storage/DictionarySerializer.py @@ -315,8 +315,8 @@ class DictionarySerializer(Serializer): def _serialize_s...
fix: DictionarySerializer._(de)serialize_sub_workflow handles in|out_assign as dict instead of list. #<I>
knipknap_SpiffWorkflow
train
py
a322b4476095253c6a18f6cfe2e2a1a20af7616c
diff --git a/src/Configurator.php b/src/Configurator.php index <HASH>..<HASH> 100644 --- a/src/Configurator.php +++ b/src/Configurator.php @@ -123,10 +123,6 @@ class Configurator implements ConfigProvider $this->templateNormalizer = new TemplateNormalizer; } - //==================================================...
Removed comments [ci skip]
s9e_TextFormatter
train
php
7e002aa34a9ff273f99e4425efb24a55eddcf56f
diff --git a/src/Database/SqlDatabase.php b/src/Database/SqlDatabase.php index <HASH>..<HASH> 100644 --- a/src/Database/SqlDatabase.php +++ b/src/Database/SqlDatabase.php @@ -64,18 +64,19 @@ class SqlDatabase implements DatabaseInterface * @param string $table * @param array $primaryKeyValue * @param...
Do not treat null as an empty string
arrilot_data-anonymization
train
php
f0d49c258f11f1b6fa49a0c227235b608470f023
diff --git a/dhcpcanon/__init__.py b/dhcpcanon/__init__.py index <HASH>..<HASH> 100644 --- a/dhcpcanon/__init__.py +++ b/dhcpcanon/__init__.py @@ -12,7 +12,7 @@ except ImportError: from setuptools_scm import get_version version = get_version() except (ImportError, LookupError): - version =...
Bump to version <I>
juga0_dhcpcanon
train
py,py
e26a6f02fc889571447f1b07a5bf9e9b0767b200
diff --git a/lib/Drivers/DDL/sqlite.js b/lib/Drivers/DDL/sqlite.js index <HASH>..<HASH> 100644 --- a/lib/Drivers/DDL/sqlite.js +++ b/lib/Drivers/DDL/sqlite.js @@ -137,9 +137,6 @@ function buildColumnDefinition(driver, name, prop) { } else { def = driver.query.escapeId(name) + " REAL"; } - if (prop.unsign...
SQLite does not support unsigned
dresende_node-orm2
train
js
a303c6c1b6924b85be931986bdaddc5e23d95ce7
diff --git a/src/TrackableTrait.php b/src/TrackableTrait.php index <HASH>..<HASH> 100644 --- a/src/TrackableTrait.php +++ b/src/TrackableTrait.php @@ -54,6 +54,10 @@ trait TrackableTrait $this->owner->_containerTrait ) { $this->owner->removeElement($this->short_name); + $th...
fix memory leaks in case of AppScope is present
atk4_core
train
php
737f4c3b70fd41d71ca97e3fe649a88cb0c5fd7e
diff --git a/spec/dummy/config/initializers/session_store.rb b/spec/dummy/config/initializers/session_store.rb index <HASH>..<HASH> 100644 --- a/spec/dummy/config/initializers/session_store.rb +++ b/spec/dummy/config/initializers/session_store.rb @@ -1,6 +1,6 @@ # Be sure to restart your server when you modify this fi...
Cancel using new hash syntax of Ruby <I>+ This lines were generated by rails.
cookpad_chanko
train
rb,rb
58108bd3daee30dd2107e63ecd4053b400141d05
diff --git a/h2o-py/h2o/frame.py b/h2o-py/h2o/frame.py index <HASH>..<HASH> 100644 --- a/h2o-py/h2o/frame.py +++ b/h2o-py/h2o/frame.py @@ -108,9 +108,6 @@ class H2OFrame(Keyed): self._upload_python_object(python_obj, destination_frame, header, separator, column_names...
Deleting frame creating temporarily during split locally.
h2oai_h2o-3
train
py
4196ef0601546fcc38f4d95892a7b9e878f304f6
diff --git a/lib/rails_admin/config/fields/types/dragonfly.rb b/lib/rails_admin/config/fields/types/dragonfly.rb index <HASH>..<HASH> 100644 --- a/lib/rails_admin/config/fields/types/dragonfly.rb +++ b/lib/rails_admin/config/fields/types/dragonfly.rb @@ -13,7 +13,7 @@ module RailsAdmin bindings[:object].er...
set image? as an instance option for easy configuration
sferik_rails_admin
train
rb,rb
53ba73e4ce8f197496d1b3b516c4b6f454090324
diff --git a/src/views/boomcms/editor/page/settings/children.php b/src/views/boomcms/editor/page/settings/children.php index <HASH>..<HASH> 100644 --- a/src/views/boomcms/editor/page/settings/children.php +++ b/src/views/boomcms/editor/page/settings/children.php @@ -44,7 +44,7 @@ <select name="ch...
Fixed making children invisible in CMS not saving
boomcms_boom-core
train
php
e9d0275e7baf7ae9754a313f5193408f116c26b1
diff --git a/transactions.py b/transactions.py index <HASH>..<HASH> 100644 --- a/transactions.py +++ b/transactions.py @@ -337,6 +337,7 @@ class Transactions(): self.deleteSelectorBox.set_margin_end(5) # Connect Widget Handlers + self.button.connect("clicked", self.on_deleteButton_clicked, se...
Readded ability to delete categories. #<I>
mthxx_Budget
train
py
d56c46d97cf0426daca5f93500107b902a242cbf
diff --git a/scapy/contrib/ospf.py b/scapy/contrib/ospf.py index <HASH>..<HASH> 100644 --- a/scapy/contrib/ospf.py +++ b/scapy/contrib/ospf.py @@ -693,7 +693,9 @@ class OSPFv3_Inter_Area_Router_LSA(OSPF_BaseLSA): XIntField("seq", 0x80000001), XShortField("chksum", None), ...
[contrib/ospf.py] Fixed layout of OSPFv3_Inter_Area_Router_LSA
secdev_scapy
train
py
640c3445b42b639363c2316d7d1da210f73b314f
diff --git a/library/src/main/java/com/jpardogo/android/flabbylistview/lib/FlabbyLayout.java b/library/src/main/java/com/jpardogo/android/flabbylistview/lib/FlabbyLayout.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/com/jpardogo/android/flabbylistview/lib/FlabbyLayout.java +++ b/library/src/main/java/com...
Deleted unsed tag for textview
jpardogo_FlabbyListView
train
java
880458c3ae5c6a657352f6bb3d6eb2fdb9cdab02
diff --git a/lib/server-code/runners/tasks/util/args.js b/lib/server-code/runners/tasks/util/args.js index <HASH>..<HASH> 100644 --- a/lib/server-code/runners/tasks/util/args.js +++ b/lib/server-code/runners/tasks/util/args.js @@ -5,7 +5,8 @@ const Backendless = require('backendless'), const defaultClassMappings = {...
fix (class mapping) geo points are not mapped to Backendless.GeoPoint
Backendless_JS-Code-Runner
train
js
d56583250c096e58654c99ccebe28e068cc94dc3
diff --git a/dropwizard-testing/src/main/java/com/yammer/dropwizard/testing/JsonHelpers.java b/dropwizard-testing/src/main/java/com/yammer/dropwizard/testing/JsonHelpers.java index <HASH>..<HASH> 100644 --- a/dropwizard-testing/src/main/java/com/yammer/dropwizard/testing/JsonHelpers.java +++ b/dropwizard-testing/src/ma...
Added docs for JsonHelpers#jsonFixture.
dropwizard_dropwizard
train
java
1d7f254453d29f9df61fba06ca439a1c02973ee4
diff --git a/kettle/model.py b/kettle/model.py index <HASH>..<HASH> 100644 --- a/kettle/model.py +++ b/kettle/model.py @@ -33,6 +33,7 @@ class Database(object): create table if not exists build(gcs_path primary key, started_json, finished_json, finished_time); create table if not exists file(p...
Add an index on build to speed it up.
kubernetes_test-infra
train
py
af13f3b151a50a98ee7e881ab80d830b3375e03c
diff --git a/spec/dummy/config/application.rb b/spec/dummy/config/application.rb index <HASH>..<HASH> 100644 --- a/spec/dummy/config/application.rb +++ b/spec/dummy/config/application.rb @@ -20,14 +20,8 @@ module Dummy # Application configuration should go into files in config/initializers # -- all .rb files ...
Remove dummy app's configuration for Sprockets 3
yasaichi_grease
train
rb
cbb4a4b410b36e993fb46a173f607b470d62f17d
diff --git a/resources/default.rb b/resources/default.rb index <HASH>..<HASH> 100644 --- a/resources/default.rb +++ b/resources/default.rb @@ -36,7 +36,7 @@ attribute :path, :kind_of => String attribute :owner, :kind_of => String attribute :group, :kind_of => String attribute :strategy, :kind_of => [String, Symbol],...
Allow symbol and string names to be passed through (deploy resource does the lookup dance automatically).
poise_application
train
rb
2628dafe9bee2a9824a68ba639efb3993003d7ab
diff --git a/app/models/message.rb b/app/models/message.rb index <HASH>..<HASH> 100644 --- a/app/models/message.rb +++ b/app/models/message.rb @@ -31,6 +31,7 @@ class Message @additionals = Hash.new plain.to_hash.keys.each do |key| + key = key.to_s value = plain[key] if key[0,1] == ADDITI...
fix ruby <I> incompatibility in full message view #WEBINTERFACE-<I>
Graylog2_graylog2-server
train
rb
7b2b274ae866a4929efa62baaf30e049df71255e
diff --git a/manifest.php b/manifest.php index <HASH>..<HASH> 100644 --- a/manifest.php +++ b/manifest.php @@ -24,7 +24,7 @@ return array( 'label' => 'extension-tao-outcomerds', 'description' => 'extension that allows a storage in relational database', 'license' => 'GPL-2.0', - 'version' => '3.0.0', +...
Bump to version <I>
oat-sa_extension-tao-outcomerds
train
php,php
05bdd8e0004fbc4d7d9d1d6ea723d1eb437db490
diff --git a/src/components/Image.js b/src/components/Image.js index <HASH>..<HASH> 100644 --- a/src/components/Image.js +++ b/src/components/Image.js @@ -117,3 +117,5 @@ var Image = React.createClass({ return null; }, }); + +module.exports = Image;
[Image] Add missing export for Image component
Root-App_react-native-mock-render
train
js
d6b21728afccbd61c61bc162615c35969e202e27
diff --git a/src/Entities/Category.php b/src/Entities/Category.php index <HASH>..<HASH> 100644 --- a/src/Entities/Category.php +++ b/src/Entities/Category.php @@ -161,7 +161,7 @@ class Category extends Node implements UrlGenerator, Cacheable */ public function getRouteName() { - return implode('....
Add category prefix on route name to prevent collition.
yajra_cms-core
train
php
f804c4910ea4303ea43bb817171a790c3ab805e3
diff --git a/src/main/java/com/iyzipay/model/PaymentResource.java b/src/main/java/com/iyzipay/model/PaymentResource.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/iyzipay/model/PaymentResource.java +++ b/src/main/java/com/iyzipay/model/PaymentResource.java @@ -34,6 +34,7 @@ public class PaymentResource extend...
adds new fields to payment resource (#<I>)
iyzico_iyzipay-java
train
java
cc87c56826d89c68628d734b2556972357245bb6
diff --git a/packages/node_modules/@webex/webex-core/src/lib/services/services.js b/packages/node_modules/@webex/webex-core/src/lib/services/services.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@webex/webex-core/src/lib/services/services.js +++ b/packages/node_modules/@webex/webex-core/src/lib/services/s...
fix: read canAuthorize from credentials
webex_spark-js-sdk
train
js
8e13985f5e5f9a9867411906ab924c8c7fca1999
diff --git a/test-complete/src/test/java/com/marklogic/javaclient/TestPOJOReadWrite1.java b/test-complete/src/test/java/com/marklogic/javaclient/TestPOJOReadWrite1.java index <HASH>..<HASH> 100644 --- a/test-complete/src/test/java/com/marklogic/javaclient/TestPOJOReadWrite1.java +++ b/test-complete/src/test/java/com/ma...
uncommented the setup and teardown
marklogic_java-client-api
train
java
ad1946eb600f3148a85924e57f039b9c9a34ce48
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,6 @@ #!/usr/bin/env python -'''Making it pip-installable''' +"""BitlyOauth2ProxySession setup +""" import os import codecs import setuptools @@ -10,7 +11,7 @@ DESCRIPTION = 'LSST Data Management SQuaRE Bitly-Proxy ...
Make requests version more flexible in order to be used with recent apikit.
lsst-sqre_BitlyOAuth2ProxySession
train
py
dd130db570a6ef7b36a9c76167e8cf0036de1207
diff --git a/src/Connection.js b/src/Connection.js index <HASH>..<HASH> 100644 --- a/src/Connection.js +++ b/src/Connection.js @@ -8,6 +8,7 @@ var Cache = require('./Cache'); var Process = require('./Process'); var Request = require('./Request'); var Response = require('./Response'); +var assert = require('./Asserti...
Moving process creation to run before any potential of the streams being read.
simplygreatwork_godsend
train
js
0263bb808e03c8136d1f5e29434e7c068b84d179
diff --git a/lib/sup/modes/thread-view-mode.rb b/lib/sup/modes/thread-view-mode.rb index <HASH>..<HASH> 100644 --- a/lib/sup/modes/thread-view-mode.rb +++ b/lib/sup/modes/thread-view-mode.rb @@ -317,11 +317,11 @@ EOS left = l.depth * INDENT_SPACES right = left + l.width - ## jump to the top line unless b...
make 'n' and 'p' in thread-view-mode always top-and-left justify Previously, 'n' and 'p' would only move the cursor if the next or previous message already completely fit on the screen. Now they always move the buffer so that the current message is at the top left. I think this makes it a little easier to read a whole...
sup-heliotrope_sup
train
rb
ab368ebcd8988d3432e1c90ad27fe063f2029cdb
diff --git a/angr/analyses/cfg_fast.py b/angr/analyses/cfg_fast.py index <HASH>..<HASH> 100644 --- a/angr/analyses/cfg_fast.py +++ b/angr/analyses/cfg_fast.py @@ -2310,7 +2310,7 @@ class CFGFast(ForwardAnalysis, CFGBase): # pylint: disable=abstract-method if a.addr <= b.addr and \ (...
CFGFast: when removing alignments, the new block does not have to be aligned (mostly for -Os).
angr_angr
train
py
bb2a7f43385fe469e587348ebdb31ea0b15674ed
diff --git a/api/agent.go b/api/agent.go index <HASH>..<HASH> 100644 --- a/api/agent.go +++ b/api/agent.go @@ -263,6 +263,7 @@ func (a *Agent) Monitor(stopCh <-chan struct{}, q *QueryOptions) (<-chan *Stream for { select { case <-stopCh: + close(frames) return default: } diff --git a/client/a...
address feedback, fix gauge metric name
hashicorp_nomad
train
go,go
71963458e83ed6159714832c227baec73564ba56
diff --git a/src/Peach/DF/JsonCodec.php b/src/Peach/DF/JsonCodec.php index <HASH>..<HASH> 100644 --- a/src/Peach/DF/JsonCodec.php +++ b/src/Peach/DF/JsonCodec.php @@ -209,7 +209,7 @@ class JsonCodec implements Codec $opt = 1; $result = new ArrayMap(); while ($options) { - $resul...
Replaced boolval() with cast (bool) because of the PHP version support range
trashtoy_PEACH2
train
php
c85647f8b1943901bc5b063d9023313dba4e120e
diff --git a/kubespawner/spawner.py b/kubespawner/spawner.py index <HASH>..<HASH> 100644 --- a/kubespawner/spawner.py +++ b/kubespawner/spawner.py @@ -1835,7 +1835,7 @@ class KubeSpawner(Spawner): pod = yield gen.maybe_future(self.modify_pod_hook(self, pod)) for i in range(retry_times): ...
Fix pod method access Turns out we still have to use dot notation for objects we create - subscription is only for objects we read
jupyterhub_kubespawner
train
py
166110ccf272f6fb1c6cac76cedd8e10140c6857
diff --git a/rollup.config.js b/rollup.config.js index <HASH>..<HASH> 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -49,7 +49,7 @@ export default [ scss({ output: 'docs/assets/dist/css/docs.min.css', outputStyle: 'compressed', - watch: 'src/scss', + watch: 'docs/assets/s...
chore: add watch for docs scss files
italia_bootstrap-italia
train
js
8ceaf684af6152f939645145131c4e272a727c62
diff --git a/src/main/java/com/opentable/db/postgres/embedded/EmbeddedPostgres.java b/src/main/java/com/opentable/db/postgres/embedded/EmbeddedPostgres.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/opentable/db/postgres/embedded/EmbeddedPostgres.java +++ b/src/main/java/com/opentable/db/postgres/embedded/Emb...
Fixed checkStyle complaint about imports using ".*".
opentable_otj-pg-embedded
train
java
8c3f4930a724719450171c615527f201c111e5aa
diff --git a/carrot/backends/pyamqplib.py b/carrot/backends/pyamqplib.py index <HASH>..<HASH> 100644 --- a/carrot/backends/pyamqplib.py +++ b/carrot/backends/pyamqplib.py @@ -86,7 +86,14 @@ class Backend(BaseBackend): def __init__(self, connection, **kwargs): self.connection = connection - self.c...
Don't request a new channel until it's needed.
ask_carrot
train
py
04d37797c9dd911113338eae3af1377e209ee637
diff --git a/ipopt/version.py b/ipopt/version.py index <HASH>..<HASH> 100644 --- a/ipopt/version.py +++ b/ipopt/version.py @@ -12,4 +12,4 @@ URL: https://github.com/matthias-k/cyipopt License: EPL 1.0 """ -__version__ = '0.1.9' +__version__ = '0.2.0.dev0'
Bumped to version <I>.dev0.
matthias-k_cyipopt
train
py
7666421bc2d3e77f25cb608693bd0d049e8038a0
diff --git a/src/Search/Adapters/SolrQueryAdapter.php b/src/Search/Adapters/SolrQueryAdapter.php index <HASH>..<HASH> 100755 --- a/src/Search/Adapters/SolrQueryAdapter.php +++ b/src/Search/Adapters/SolrQueryAdapter.php @@ -356,7 +356,7 @@ class SolrQueryAdapter implements QueryInterface if (!empty($userGroups)) ...
[fix] Correct solr restrictAccess on groups (#<I>)
hubzero_framework
train
php
0ccd1393ff0b9c210640f4a62d924e5e224c2ffa
diff --git a/pypiper/pipeline.py b/pypiper/pipeline.py index <HASH>..<HASH> 100644 --- a/pypiper/pipeline.py +++ b/pypiper/pipeline.py @@ -289,8 +289,8 @@ class Pipeline(object): def wrapup(self): - """ Hook for basic final stage to run, after last one completes. """ - self.manager.stop_pipeline(...
better indication of what's intended with the wrapup
databio_pypiper
train
py
11c7ef1b0a9165da2fad8092c5bc5e4252f9d728
diff --git a/spec/celluloid/io/tcp_socket_spec.rb b/spec/celluloid/io/tcp_socket_spec.rb index <HASH>..<HASH> 100644 --- a/spec/celluloid/io/tcp_socket_spec.rb +++ b/spec/celluloid/io/tcp_socket_spec.rb @@ -87,6 +87,17 @@ describe Celluloid::IO::TCPSocket do }.to raise_error(EOFError) end end + + ...
Add spec for raising IOError when reading from a socket we closed
celluloid_celluloid-io
train
rb
bcf4e9f5de5517c72075a9c04ebdeba7b03b035f
diff --git a/lmdb/cursor_test.go b/lmdb/cursor_test.go index <HASH>..<HASH> 100644 --- a/lmdb/cursor_test.go +++ b/lmdb/cursor_test.go @@ -240,6 +240,7 @@ func TestCursor_Get_KV(t *testing.T) { if err != nil { return err } + defer cur.Close() k, v, err := cur.Get([]byte("key"), []byte("0"), GetBothRange...
Add missing call to cur.Close()
bmatsuo_lmdb-go
train
go
f2492287b585e364467e99cefb30b7667baca26d
diff --git a/foliadocserve.py b/foliadocserve.py index <HASH>..<HASH> 100755 --- a/foliadocserve.py +++ b/foliadocserve.py @@ -253,6 +253,8 @@ def getannotations(element, previouswordid = None): if not element.id and (folia.Attrib.ID in element.REQUIRED_ATTRIBS or folia.Attrib.ID in element.OPTIONAL_ATTRIBS): ...
fixed deletion of span annotation, but does not refresh as it should yet
proycon_flat
train
py
18c91aae5bd93363648d0abb6644679dbb207854
diff --git a/tests/aws/models/storage/file_tests.rb b/tests/aws/models/storage/file_tests.rb index <HASH>..<HASH> 100644 --- a/tests/aws/models/storage/file_tests.rb +++ b/tests/aws/models/storage/file_tests.rb @@ -57,6 +57,8 @@ Shindo.tests("Storage[:aws] | file", [:aws]) do end tests("multipart upload") d...
[aws|storage|test] Mark multipart upload test as pending
fog_fog
train
rb
870498d928b79bc6c3a53912087feedf8652ffa9
diff --git a/src/drag.js b/src/drag.js index <HASH>..<HASH> 100644 --- a/src/drag.js +++ b/src/drag.js @@ -18,6 +18,10 @@ function defaultSubject(d) { return d == null ? {x: event.x, y: event.y} : d; } +function touchable() { + return "ontouchstart" in this; +} + export default function() { var filter = defa...
Only register touch listeners when supported. This avoids a [Violation] warning in Chrome (#<I>).
d3_d3-drag
train
js
26d85597262c8d6f94b67f04fb626e3b49ceafdc
diff --git a/spec/unit/virtus/typecast/object/class_methods/method_missing_spec.rb b/spec/unit/virtus/typecast/object/class_methods/method_missing_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/virtus/typecast/object/class_methods/method_missing_spec.rb +++ b/spec/unit/virtus/typecast/object/class_methods/method_m...
OK let's not check for that exception message so it passes on rbx
solnic_virtus
train
rb
6a3a4351fec7214c2aea9303f809ab98598141d0
diff --git a/lib/pool.js b/lib/pool.js index <HASH>..<HASH> 100644 --- a/lib/pool.js +++ b/lib/pool.js @@ -71,7 +71,7 @@ util.inherits(Pool, process.EventEmitter); Pool.prototype.connect = function(callback){ var i = 0, finished = 0, self = this, len = this.hosts.length * this.hostPoolSize, - connected ...
Adding fix for connections when last node might be down
lyveminds_scamandrios
train
js
973433260e99aedfe483e1a6b1bae007ea5a271b
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,8 @@ extras["serving"] = ["pydantic", "uvicorn", "fastapi", "starlette"] extras["all"] = extras["serving"] + ["tensorflow", "torch"] extras["testing"] = ["pytest", "pytest-xdist", "timeout-decorator", "psutil"] -...
Pin `sphinx-rtd-theme` (#<I>)
huggingface_pytorch-pretrained-BERT
train
py
d643cbe7f8b85db222feed4be14821cfe338cc6c
diff --git a/railties/lib/rails/generators/rails/scaffold/scaffold_generator.rb b/railties/lib/rails/generators/rails/scaffold/scaffold_generator.rb index <HASH>..<HASH> 100644 --- a/railties/lib/rails/generators/rails/scaffold/scaffold_generator.rb +++ b/railties/lib/rails/generators/rails/scaffold/scaffold_generator....
Changed if ! to unless
rails_rails
train
rb
6e99fa8b0baecdbaf6fe53602a35c4e17fa1e338
diff --git a/tests/test_interface.py b/tests/test_interface.py index <HASH>..<HASH> 100644 --- a/tests/test_interface.py +++ b/tests/test_interface.py @@ -10,7 +10,7 @@ import time import os from pybar.run_manager import RunManager -from pybar.fei4.register_utils import FEI4RegisterUtils +from pybar.fei4.register_u...
BUG: fix recursion, this might work
SiLab-Bonn_pyBAR
train
py
300f64e202991b5be4849b148924925f8934e3a7
diff --git a/src/test/java/org/psjava/algo/graph/LowestCommonAncestorTest.java b/src/test/java/org/psjava/algo/graph/LowestCommonAncestorTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/psjava/algo/graph/LowestCommonAncestorTest.java +++ b/src/test/java/org/psjava/algo/graph/LowestCommonAncestorTest.java @...
improve unit test - LowestCommonAncestorTest
psjava_psjava
train
java
8523bde11310ae4edccc0e97ce6473e1279880fd
diff --git a/chatterbot/__init__.py b/chatterbot/__init__.py index <HASH>..<HASH> 100644 --- a/chatterbot/__init__.py +++ b/chatterbot/__init__.py @@ -1,5 +1,5 @@ from .chatterbot import ChatBot -__version__ = "0.3.4" +__version__ = "0.3.5" __maintainer__ = "Gunther Cox" __email__ = "gunthercx@gmail.com"
Updated version to <I>
gunthercox_ChatterBot
train
py
a27f594bfb07c3122060ff689ba03b0e53a4144f
diff --git a/angr/storage/memory_mixins/paged_memory/pages/list_page.py b/angr/storage/memory_mixins/paged_memory/pages/list_page.py index <HASH>..<HASH> 100644 --- a/angr/storage/memory_mixins/paged_memory/pages/list_page.py +++ b/angr/storage/memory_mixins/paged_memory/pages/list_page.py @@ -196,9 +196,11 @@ class Li...
ListPage: Reduce calls to _contains().
angr_angr
train
py
7472e1584f53ab2bea46a6bcf7954265806fc43c
diff --git a/view/adminhtml/web/js/confirm.js b/view/adminhtml/web/js/confirm.js index <HASH>..<HASH> 100755 --- a/view/adminhtml/web/js/confirm.js +++ b/view/adminhtml/web/js/confirm.js @@ -14,7 +14,7 @@ require([ var content; if (element.attr('id') === 'sync_settings_addressbook_allow_non_subscrib...
Merged PR <I>: Improve the confirmation text when changing subscriber sync settings ## What's being changed There's some text that pops up when you change dotdigital > Sync Settings > Allow non-subscribed contacts to be imported from No to Yes. This needed a little edit. ## How to review / test this change - Change...
dotmailer_dotmailer-magento2-extension
train
js
8dafbf67b952f18c3344642204d4726e1aa36e4f
diff --git a/springfox-spring-web/src/main/java/springfox/documentation/spring/web/scanners/ApiDescriptionReader.java b/springfox-spring-web/src/main/java/springfox/documentation/spring/web/scanners/ApiDescriptionReader.java index <HASH>..<HASH> 100644 --- a/springfox-spring-web/src/main/java/springfox/documentation/sp...
Added group name when inferring api descriptions (<I>)
springfox_springfox
train
java
a8daf7d1367c54179ed68bcbd0b51eb0ef395856
diff --git a/dht.go b/dht.go index <HASH>..<HASH> 100644 --- a/dht.go +++ b/dht.go @@ -796,7 +796,8 @@ func extractValues(m Msg) (vs []util.CompactPeer) { } vl, ok := v.([]interface{}) if !ok { - panic(v) + log.Printf("unexpected krpc values type: %T", v) + return } vs = make([]util.CompactPeer, 0, len(vl)...
Log the type for a rare DHT crash
anacrolix_dht
train
go
a15301d81ace385a4ba7dac3786e24c6ae66a2cc
diff --git a/pkglib/testing/redis_server.py b/pkglib/testing/redis_server.py index <HASH>..<HASH> 100644 --- a/pkglib/testing/redis_server.py +++ b/pkglib/testing/redis_server.py @@ -34,6 +34,12 @@ class RedisTestServer(TestServer): # zset-max-ziplist-value 64 # zset-max-ziplist-entries 128 #...
And the same for all other default-set config vars to head of more changes in redis' format
manahl_pytest-plugins
train
py
4ba1983c7c6d6d4c5ddcc6313714a967cae8e7e5
diff --git a/goanna/response.go b/goanna/response.go index <HASH>..<HASH> 100644 --- a/goanna/response.go +++ b/goanna/response.go @@ -17,6 +17,7 @@ type Response interface { SetCookie(http.Cookie) ClearCookie(string) GetStatusCode() int + Headers() http.Header } type OkResponse struct { @@ -39,6 +40,10 @@ fu...
ErrorResponses should send headers
99designs_goodies
train
go
dd189adab4a7c807e73bf60b700bec553d85ae18
diff --git a/pythomata/__init__.py b/pythomata/__init__.py index <HASH>..<HASH> 100644 --- a/pythomata/__init__.py +++ b/pythomata/__init__.py @@ -4,4 +4,4 @@ __author__ = """Marco Favorito""" __email__ = 'marco.favorito@gmail.com' -__version__ = '0.1.5' +__version__ = '0.1.5.post2' diff --git a/setup.py b/setup.py...
update version number for release <I>.post2
MarcoFavorito_pythomata
train
py,py
060d25a647e01ea4f7fc13ff29a1094e600908fa
diff --git a/lib/codesake/dawn/kb/pattern_match_check.rb b/lib/codesake/dawn/kb/pattern_match_check.rb index <HASH>..<HASH> 100644 --- a/lib/codesake/dawn/kb/pattern_match_check.rb +++ b/lib/codesake/dawn/kb/pattern_match_check.rb @@ -18,7 +18,11 @@ module Codesake def vuln? Dir.glob(File.join("#{ro...
Fixing a possible UTF-8 issue when performing pattern matching checks to Redis database files
thesp0nge_dawnscanner
train
rb
2ff728f3bedc17991c606077670ff77881d7a696
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,6 @@ setup( "Intended Audience :: Developers", "Intended Audience :: Healthcare Industry", "Intended Audience :: Science/Research", - "License :: OSI Approved :: Any", "Lice...
fixed bug in setup.py re: classifiers
biocommons_hgvs
train
py
57b793b15660eb07a85a7c5e1a82cbd31a02874e
diff --git a/devices.js b/devices.js index <HASH>..<HASH> 100755 --- a/devices.js +++ b/devices.js @@ -2816,6 +2816,21 @@ const devices = [ description: 'Element downlight smart LED bulb', extend: generic.light_onoff_brightness, }, + { + zigbeeModel: ['E1C-NB6'], + model: 'E1C-NB...
Add Support for Sengled Smart Plug (#<I>) * Add support for Sengled Smart Plug * Added configure to Sengled Smart Plug (E1C-NB6)
Koenkk_zigbee-shepherd-converters
train
js
d7da6943ab69680f5b578779fa3fa23cc6bd9812
diff --git a/java/client/src/org/openqa/selenium/tools/javadoc/JavadocJarMaker.java b/java/client/src/org/openqa/selenium/tools/javadoc/JavadocJarMaker.java index <HASH>..<HASH> 100644 --- a/java/client/src/org/openqa/selenium/tools/javadoc/JavadocJarMaker.java +++ b/java/client/src/org/openqa/selenium/tools/javadoc/Ja...
[java] Printing stack trace to console instead of trowing in finally block It's a sample executable utility so printing to the console is acceptable. Throwing from a finally block hides the original exception if there were one.
SeleniumHQ_selenium
train
java
8d29d2001fbb8438b7c889375651f41a4e16d2f5
diff --git a/src/css_composer/index.js b/src/css_composer/index.js index <HASH>..<HASH> 100644 --- a/src/css_composer/index.js +++ b/src/css_composer/index.js @@ -15,6 +15,7 @@ * rules: '.myClass{ color: red}', * } */ +import { isArray } from 'underscore'; module.exports = () => { let em; @@ -135,7 +136,...
Check if loaded CSS is actually empty
artf_grapesjs
train
js
8d6032b8dc2cbe40e08771f875ea7add94231b20
diff --git a/lib/wireprotocol/3_2_support.js b/lib/wireprotocol/3_2_support.js index <HASH>..<HASH> 100644 --- a/lib/wireprotocol/3_2_support.js +++ b/lib/wireprotocol/3_2_support.js @@ -329,6 +329,11 @@ WireProtocol.prototype.getMore = function( queryOptions.session = cursorState.session; } + // We need to ...
refactor(wire-protocol): ensure stmtId is incremented on getMore
mongodb-js_mongodb-core
train
js
b89f30a8f0ac029e110926afd2c2fb46acba0bbc
diff --git a/src/Test.php b/src/Test.php index <HASH>..<HASH> 100644 --- a/src/Test.php +++ b/src/Test.php @@ -17,7 +17,7 @@ abstract class Test extends \PHPUnit_Framework_TestCase { return [ ["string"], [0], - [PHP_INT_MIN], + [~PHP_INT_MAX], [-1.0]...
Fixed #3 (PHP_INT_MIN is PHP 7 only)
amphp_amp
train
php
60f676aeebb731ac27b296db7b61aeeb21252eb5
diff --git a/src/main/java/com/couchbase/client/dcp/transport/netty/DcpConnectHandler.java b/src/main/java/com/couchbase/client/dcp/transport/netty/DcpConnectHandler.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/couchbase/client/dcp/transport/netty/DcpConnectHandler.java +++ b/src/main/java/com/couchbase/cli...
JDCP-<I> Change DCP name to avoid Data Service issues Motivation ---------- Work around server-side issue MB-<I> Modifications ------------- Remove curly braces from DCP connection names Change-Id: I<I>f4cb<I>f<I>c4b5e0aa<I>fa9cbf<I>af7 Reviewed-on: <URL>
couchbase_java-dcp-client
train
java