hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
0986c906b998bff4a839507a2c644dcf97629ee9
diff --git a/go/kbfs/kbfsfuse/main.go b/go/kbfs/kbfsfuse/main.go index <HASH>..<HASH> 100644 --- a/go/kbfs/kbfsfuse/main.go +++ b/go/kbfs/kbfsfuse/main.go @@ -12,6 +12,7 @@ import ( "flag" "fmt" "os" + "runtime" "bazil.org/fuse" @@ -85,6 +86,16 @@ func start() *libfs.Error { err := os.MkdirAll(mountDir, o...
kbfsfuse: Add error logging if this fails. This serves the additional function of making it obvious to our future selves, that this code is not necessarily sufficient to obsolete creating the directory elsewhere.
keybase_client
train
29ac95e5d0c6c73ef12deda93a2ecc74bec51261
diff --git a/kubespawner/spawner.py b/kubespawner/spawner.py index <HASH>..<HASH> 100644 --- a/kubespawner/spawner.py +++ b/kubespawner/spawner.py @@ -442,7 +442,7 @@ class KubeSpawner(Spawner): @gen.coroutine def start(self): - if self.user_storage_class && self.user_storage_capacity: + if se...
Fixed syntax error: changed && to and
jupyterhub_kubespawner
train
b073c839d128ba6477839c5712514fed761a4ea8
diff --git a/aws/resource_aws_apigatewayv2_stage_test.go b/aws/resource_aws_apigatewayv2_stage_test.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_apigatewayv2_stage_test.go +++ b/aws/resource_aws_apigatewayv2_stage_test.go @@ -387,6 +387,27 @@ func TestAccAWSAPIGatewayV2Stage_RouteSettings(t *testing.T) { ...
Test that route_settings are removed when empty.
terraform-providers_terraform-provider-aws
train
19c4c18922ff92fe2efc7afd55bd992e20963817
diff --git a/handler_test.go b/handler_test.go index <HASH>..<HASH> 100644 --- a/handler_test.go +++ b/handler_test.go @@ -37,6 +37,7 @@ func (suite *HandlerSuite) TestConnections(c *C) { q2 := conn2.OpenQueue("q2") q2.Purge() consumer := NewTestConsumer() + q2.PrepareConsumption(10) q2.AddConsumer("cons1", con...
Add queue.Queue.PrepareConsumption to inject buffer size
adjust_rmq
train
29930da52272b8fd644c38cc303ba6aa66e49182
diff --git a/rpc/api.go b/rpc/api.go index <HASH>..<HASH> 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -99,7 +99,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err state := api.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address) value := state.StorageString(args.Key) ...
eth_getStorageAt output hex should begin with 0x
ethereum_go-ethereum
train
b86103392e47bf78aca5574874c23f2148b43422
diff --git a/qtpy/py3compat.py b/qtpy/py3compat.py index <HASH>..<HASH> 100644 --- a/qtpy/py3compat.py +++ b/qtpy/py3compat.py @@ -259,7 +259,3 @@ else: def qbytearray_to_str(qba): """Convert QByteArray object to str in a way compatible with Python 2/3""" return str(bytes(qba.toHex().data()).decode()) - - -i...
py3compat: remove unused __main__ boilerplate py3compat does not need to be executable, and has no main(), so remove the __main__ boilerplate.
spyder-ide_qtpy
train
48d56528609e3d2765d1f04f22a5ee1801f258ca
diff --git a/tag/index.php b/tag/index.php index <HASH>..<HASH> 100644 --- a/tag/index.php +++ b/tag/index.php @@ -2,6 +2,7 @@ require_once('../config.php'); require_once('lib.php'); +require_once('locallib.php'); require_once('pagelib.php'); require_once($CFG->dirroot.'/lib/weblib.php'); require_once($CFG->dirr...
MDL-<I>: moving capability checks out of the library + code formatting adjustments
moodle_moodle
train
7b8a153e2a90aa6ad3b6dc4d53a39c538ca311c4
diff --git a/core/src/main/java/jenkins/model/Jenkins.java b/core/src/main/java/jenkins/model/Jenkins.java index <HASH>..<HASH> 100755 --- a/core/src/main/java/jenkins/model/Jenkins.java +++ b/core/src/main/java/jenkins/model/Jenkins.java @@ -2653,6 +2653,7 @@ public class Jenkins extends AbstractCIBase implements Modi...
killComputer only interrupts idle threads
jenkinsci_jenkins
train
43f8458ef64e0f6831ac9b5de60ff8f0ea41b8c8
diff --git a/phoebe/frontend/bundle.py b/phoebe/frontend/bundle.py index <HASH>..<HASH> 100644 --- a/phoebe/frontend/bundle.py +++ b/phoebe/frontend/bundle.py @@ -380,6 +380,9 @@ class Bundle(Container): bundle_twigs = [ri['twig'] for ri in return_items] #~ bundle_unique_labels = [ri['twig'] for ri in...
merged 'list_twigs' and 'match' to 'twigs'
phoebe-project_phoebe2
train
fdefdbda135992eb67a70a92da8a50b7cbb78cdb
diff --git a/movement.go b/movement.go index <HASH>..<HASH> 100644 --- a/movement.go +++ b/movement.go @@ -16,6 +16,20 @@ type ( } ) +func (c WorldCoord) Neighbor(d Direction) WorldCoord { + switch d { + case North: + c.Y++ + case South: + c.Y-- + case East: + c.X++ + case West: + c.X-- + } + return c +} + ty...
Calculate neighbor coord in a direction
ghthor_filu
train
213fc2e6132785dad50ae3576d6926c030117b1f
diff --git a/checkers/imports.py b/checkers/imports.py index <HASH>..<HASH> 100644 --- a/checkers/imports.py +++ b/checkers/imports.py @@ -22,11 +22,12 @@ from logilab.common.modutils import is_standard_module, is_relative, \ from logilab.common.ureports import VerbatimText, Paragraph from logilab import astng +fro...
import are_exclusive from astng where it's defined --HG-- branch : astng2
PyCQA_pylint
train
4222b0e3dab1e927697d669f4974596dddbb3d80
diff --git a/jgrassgears/src/main/java/org/jgrasstools/gears/libs/modules/FlowNode.java b/jgrassgears/src/main/java/org/jgrasstools/gears/libs/modules/FlowNode.java index <HASH>..<HASH> 100644 --- a/jgrassgears/src/main/java/org/jgrasstools/gears/libs/modules/FlowNode.java +++ b/jgrassgears/src/main/java/org/jgrasstool...
additions fo rease of use
TheHortonMachine_hortonmachine
train
78cfe441aa427136ff6cdaa6d325d272883e9272
diff --git a/cmd/influx_inspect/report.go b/cmd/influx_inspect/report.go index <HASH>..<HASH> 100644 --- a/cmd/influx_inspect/report.go +++ b/cmd/influx_inspect/report.go @@ -60,14 +60,14 @@ func cmdReport(opts *reportOpts) { for _, f := range files { file, err := os.OpenFile(f, os.O_RDONLY, 0600) if err != nil...
Skip TSM files that fail to load This can be used a quick way to determine if any TSM files are corrupted.
influxdata_influxdb
train
61ac4bd72b6367df767c666aa141521db24c040b
diff --git a/lib/dm-core/associations/relationship.rb b/lib/dm-core/associations/relationship.rb index <HASH>..<HASH> 100644 --- a/lib/dm-core/associations/relationship.rb +++ b/lib/dm-core/associations/relationship.rb @@ -48,11 +48,11 @@ module DataMapper end def parent_model - Class === @parent...
Fix find_const errors due to change in extlib
datamapper_dm-core
train
4b803f3edd6e3251f8b17fd4a4a2a1f0941007e1
diff --git a/stix2validator/test/v21/network_traffic_tests.py b/stix2validator/test/v21/network_traffic_tests.py index <HASH>..<HASH> 100644 --- a/stix2validator/test/v21/network_traffic_tests.py +++ b/stix2validator/test/v21/network_traffic_tests.py @@ -119,11 +119,11 @@ class ObservedDataTestCases(ValidatorTest): ...
Fix timestamp comparisons for CS<I> Two sets of timestamp properties were change to allow both properties in the set to have the exact same timestamp: - Sighting: first_seen and last_seen - Network Traffic: start and end
oasis-open_cti-stix-validator
train
95239a9ff56fb5b4bb0c34772d5b83a06ed8fd10
diff --git a/src/ManiaLib/XML/Node.php b/src/ManiaLib/XML/Node.php index <HASH>..<HASH> 100644 --- a/src/ManiaLib/XML/Node.php +++ b/src/ManiaLib/XML/Node.php @@ -202,6 +202,7 @@ class Node implements NodeInterface foreach($this->children as $child) { $dispatcher->addSubscriber($child); + $child->onAddS...
Fixed Event subscription propagation down the tree
maniaplanet_manialib-xml
train
9a242d459f5558c3d00f11ae2cdb936611bc81ed
diff --git a/pyvodb/tables.py b/pyvodb/tables.py index <HASH>..<HASH> 100644 --- a/pyvodb/tables.py +++ b/pyvodb/tables.py @@ -156,6 +156,11 @@ class Venue(TableBase): latitude=info['location']['latitude'], ) + @property + def short_address(self): + if self.address is not None: + ...
Add Venue.short_address
pyvec_pyvodb
train
62ad649e0995ade17084804aef4d64606e388343
diff --git a/lib/listen/adapters/darwin.rb b/lib/listen/adapters/darwin.rb index <HASH>..<HASH> 100644 --- a/lib/listen/adapters/darwin.rb +++ b/lib/listen/adapters/darwin.rb @@ -19,7 +19,11 @@ module Listen # @param [Boolean] blocking whether or not to block the current thread after starting # def...
Add thread-safety to starting and stopping all adapters
guard_listen
train
1fd16cd81aab971092c394db07eccd1f74825163
diff --git a/mapmyfitness/objects.py b/mapmyfitness/objects.py index <HASH>..<HASH> 100644 --- a/mapmyfitness/objects.py +++ b/mapmyfitness/objects.py @@ -10,4 +10,16 @@ class RouteObject(BaseObject): @property def description(self): - return self.original_dict['description'] \ No newline at end of f...
Return points as is or as GeoJSON if requested.
JasonSanford_mapmyfitness-python
train
354a23bac6f708b9e0e4717d86a97beb1decaaf3
diff --git a/indra/assemblers/html/assembler.py b/indra/assemblers/html/assembler.py index <HASH>..<HASH> 100644 --- a/indra/assemblers/html/assembler.py +++ b/indra/assemblers/html/assembler.py @@ -371,7 +371,7 @@ class HtmlAssembler(object): ret.append({'hash': str(key), 'english': english, ...
Fix number of decimal places after zero
sorgerlab_indra
train
20efe8bb66b6c98ac5fb740033a5c823b2caa980
diff --git a/prow/crier/reporters/gcs/kubernetes/reporter.go b/prow/crier/reporters/gcs/kubernetes/reporter.go index <HASH>..<HASH> 100644 --- a/prow/crier/reporters/gcs/kubernetes/reporter.go +++ b/prow/crier/reporters/gcs/kubernetes/reporter.go @@ -121,6 +121,11 @@ func (gr *gcsK8sReporter) addFinalizer(pj *prowv1.Pr...
GCSK8SReporter: Don't add finalizer to deleted pods
kubernetes_test-infra
train
7bdb09de3b66133dd24c3dcd65c5f5a4db46c2d0
diff --git a/installation_info.py b/installation_info.py index <HASH>..<HASH> 100644 --- a/installation_info.py +++ b/installation_info.py @@ -7,8 +7,14 @@ local_conf = { 'observatoryId': "obs1", 'observatoryName': "Cambridge-South-East", + # Set which GPIO pins we are using + 'gpioPinRelay': 12, # T...
Added local installation options to specify which GPIO pins LEDs are connected to
camsci_meteor-pi
train
61656595f95df52d3dfe72f3db5b88c413c06874
diff --git a/src/gfx/custom-mesh.js b/src/gfx/custom-mesh.js index <HASH>..<HASH> 100644 --- a/src/gfx/custom-mesh.js +++ b/src/gfx/custom-mesh.js @@ -224,7 +224,11 @@ utils.derive(CustomMesh, SceneNode, { }, shaderForStyleAndPass : function(shaderCatalog, style, pass) { if (pass === 'normal') { - retur...
rename objectClicked/objectDoubleClicked to clicked/doubleClicked
biasmv_pv
train
b976eeb628004d7feffff4111c40afc4917f8289
diff --git a/src/automate/services/textui.py b/src/automate/services/textui.py index <HASH>..<HASH> 100644 --- a/src/automate/services/textui.py +++ b/src/automate/services/textui.py @@ -25,11 +25,11 @@ from automate.common import ExitException from automate.service import AbstractUserService helpstr = """ - Automa...
Update ipython shell help text
tuomas2_automate
train
fa605431f937acbb6770001d09bce777c41bc015
diff --git a/Str.php b/Str.php index <HASH>..<HASH> 100644 --- a/Str.php +++ b/Str.php @@ -118,7 +118,7 @@ class Str public static function endsWith($haystack, $needles) { foreach ((array) $needles as $needle) { - if (substr($haystack, -strlen($needle)) === (string) $needle) { + ...
[<I>] Add multibyte functions where needed in Support/Str (#<I>) * Add multibyte functions and new test assertions * StyleCI fixes
illuminate_support
train
52039e336eda1e1c263fb5dd4518f83e374ddf8d
diff --git a/src/utils/index.js b/src/utils/index.js index <HASH>..<HASH> 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -41,6 +41,9 @@ export function defaultTo(obj, defaults) { export function update(obj={}, newData) { const flattenedData = flatten(newData); return Object.keys(flattenedData).reduc...
When updating an entity, if one key is undefined don't modify it
Drawbotics_entman
train
2ded3844b6f28be48855f8c61643612e15efa828
diff --git a/test-requirements.txt b/test-requirements.txt index <HASH>..<HASH> 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -2,4 +2,4 @@ pytest>=2.7.0, <4.0.0 pytest-runner>=2.0.0, <3.0.0 httmock>=1.2.0, <2.0.0 -PyHamcrest>=1.9.0, <2.1.0 +PyHamcrest>=1.8.0, <1.10.0 diff --git a/tests/sync/watc...
Reverted to PyHamcrest <<I>
fuzeman_trakt.py
train
f802ac24e73430b7b97f3d851ff1e4859d4aa0e5
diff --git a/Slim/Slim.php b/Slim/Slim.php index <HASH>..<HASH> 100644 --- a/Slim/Slim.php +++ b/Slim/Slim.php @@ -152,7 +152,7 @@ class Slim { if ( strpos($class, 'Slim') !== 0 ) { return; } - $file = dirname(__FILE__) . '/../' . str_replace('_', DIRECTORY_SEPARATOR, $class) . '.p...
Allow autoloading from lib directory not named Slim
slimphp_Slim
train
53111d61fe2d599255ee23b78bed6dce15f0c743
diff --git a/src/streamlink_cli/argparser.py b/src/streamlink_cli/argparser.py index <HASH>..<HASH> 100644 --- a/src/streamlink_cli/argparser.py +++ b/src/streamlink_cli/argparser.py @@ -284,7 +284,7 @@ def build_parser(): User prompts and download progress won't be written to FILE. - A value of ``-...
docs: add names for special characters
streamlink_streamlink
train
1e09d740efabf972b01fde5523e1133fc11ed348
diff --git a/test/pulsar.js b/test/pulsar.js index <HASH>..<HASH> 100644 --- a/test/pulsar.js +++ b/test/pulsar.js @@ -84,21 +84,50 @@ exports.testTaskEvents = function (test) { test.done(); } -exports.testTaskKill = function (test) { +exports.testTaskKillSigTerm = function (test) { var pulsarDb = new PulsarDb...
Add tests for killing task with sigterm and sigkill
cargomedia_pulsar-rest-api
train
653756acd56464e712d50f4534330345fe9f5a19
diff --git a/FixtureGeneratorBuilder.php b/FixtureGeneratorBuilder.php index <HASH>..<HASH> 100644 --- a/FixtureGeneratorBuilder.php +++ b/FixtureGeneratorBuilder.php @@ -18,6 +18,7 @@ use Trappar\AliceGenerator\ObjectHandler\CollectionHandler; use Trappar\AliceGenerator\ObjectHandler\DateTimeHandler; use Trappar\Ali...
Add NonSpecificPersister as default during building FixtureGenerator
trappar_AliceGenerator
train
4c8629858cc0dad7a2a8f036a0564a0ffdc592a3
diff --git a/src/java/org/archive/wayback/resourceindex/RemoteResourceIndex.java b/src/java/org/archive/wayback/resourceindex/RemoteResourceIndex.java index <HASH>..<HASH> 100644 --- a/src/java/org/archive/wayback/resourceindex/RemoteResourceIndex.java +++ b/src/java/org/archive/wayback/resourceindex/RemoteResourceInde...
BUGFIX: logger was using wrong class -- was copy-paste error git-svn-id: <URL>
iipc_openwayback
train
7da336849b983616f0150b871417feabb4826414
diff --git a/api.go b/api.go index <HASH>..<HASH> 100644 --- a/api.go +++ b/api.go @@ -9,16 +9,26 @@ import ( "strconv" ) -func api_getMe(token string) (User, error) { - request := "https://api.telegram.org/bot" + token + "/getMe" +func performApiCall(method string, token string, params url.Values) ([]byte, error)...
A little bit refactoring on API calls
tucnak_telebot
train
8af0308e14bca6ce32f0b4f9c03058ff11aa5080
diff --git a/lib/utils/job-utils/ipmi-parser.js b/lib/utils/job-utils/ipmi-parser.js index <HASH>..<HASH> 100644 --- a/lib/utils/job-utils/ipmi-parser.js +++ b/lib/utils/job-utils/ipmi-parser.js @@ -115,11 +115,12 @@ function parseSensorsDataFactory(assert, _) { * @returns {uid: 'Off|Temporary On|On|Reserved', po...
ODR-<I> fix ipmi parser to accommodate 3 bytes output of raw 0x<I> 0x<I> command from vBMC output
RackHD_on-tasks
train
ef3dc09ee5c42b525a20fe40370b176d7fca11a2
diff --git a/lib/gemsmith/skeletons/rails_skeleton.rb b/lib/gemsmith/skeletons/rails_skeleton.rb index <HASH>..<HASH> 100644 --- a/lib/gemsmith/skeletons/rails_skeleton.rb +++ b/lib/gemsmith/skeletons/rails_skeleton.rb @@ -50,7 +50,7 @@ module Gemsmith private def engine_options - "--skip-bundle ...
Fixed Rails skeleton generation so test unit is skipped. - The flag had been renamed with Rails <I>.
bkuhlmann_gemsmith
train
42192c10911e43d1e51e5be2d6aeb57fb1c856ab
diff --git a/pmag_basic_dialogs.py b/pmag_basic_dialogs.py index <HASH>..<HASH> 100755 --- a/pmag_basic_dialogs.py +++ b/pmag_basic_dialogs.py @@ -2488,8 +2488,8 @@ class orient_convention(wx.Dialog): sbs4.AddSpacer(5) self.dc_alt = wx.TextCtrl(pnl,style=wx.CENTER) - #alt_txt = wx.Sta...
modified: pmag_basic_dialogs.py => fixed confusing hours to GMT modified: pmag_menu_dialogs.py => fixed confusing hours to GMT
PmagPy_PmagPy
train
6858f08cfd729cb16a6a146133a55a6b3b8ff1f6
diff --git a/insanities/storage.py b/insanities/storage.py index <HASH>..<HASH> 100644 --- a/insanities/storage.py +++ b/insanities/storage.py @@ -24,8 +24,7 @@ class LocalMemStorage(Storage): def delete(self, key): if key in self.storage: del self.storage[key] - return True - ...
tests for `insanities.storage.*`
SmartTeleMax_iktomi
train
e507216e7205fcf0403152b074631e10832eeebc
diff --git a/src/wormling/phparia/Client/Client.php b/src/wormling/phparia/Client/Client.php index <HASH>..<HASH> 100644 --- a/src/wormling/phparia/Client/Client.php +++ b/src/wormling/phparia/Client/Client.php @@ -181,7 +181,7 @@ class Client $this->logger->debug('AMI connection closed'); ...
Passing complete events from ami client
wormling_phparia
train
579b9e574b381ef46c08f70c7e58fce7908770b7
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 @@ -94,10 +94,6 @@ $.extend($.boom, } }); -(!window.console) && function(){ - window.console = /** @ignore */ { log: function(){}, debug: function(){}, ...
Removed JS creating a window.console object if it doesn't exist, instead boom.log returns when window.console isn't present
boomcms_boom-core
train
4abcb14d65d77264ca7e4666e3a13a242fee6890
diff --git a/phoebe/parameters/constraint.py b/phoebe/parameters/constraint.py index <HASH>..<HASH> 100644 --- a/phoebe/parameters/constraint.py +++ b/phoebe/parameters/constraint.py @@ -545,6 +545,8 @@ def keplers_third_law_hierarchical(b, orbit1, orbit2, solve_for=None, **kwargs): TODO: add documentation ""...
fixed hierarchical kepler's constraint to work when the inner binary is primary or secondary in the outer orbit
phoebe-project_phoebe2
train
bf8d02e017b83a1367ec960f3c36ea620b99ac0e
diff --git a/src/Query/QueryFactory.php b/src/Query/QueryFactory.php index <HASH>..<HASH> 100644 --- a/src/Query/QueryFactory.php +++ b/src/Query/QueryFactory.php @@ -52,11 +52,12 @@ public function create(string $name):Query { $queryFilePath = $this->findQueryFilePath($name); $queryClass = $this->getQueryClassFo...
Improve readability, move return statement to end of function
PhpGt_Database
train
5ab1de2f8ffa2a2d40ca6bf6186cf560d8ed0443
diff --git a/ZipStreamer.php b/ZipStreamer.php index <HASH>..<HASH> 100644 --- a/ZipStreamer.php +++ b/ZipStreamer.php @@ -323,7 +323,7 @@ class ZipStreamer { // zip64 end of central directory 4 bytes . $this->pack64le($zip64RecSta...
fixed total number of disks in Zip<I> records (fixes #5)
McNetic_PHPZipStreamer
train
1902848ea4e67683bc4371ede0e54c6e223041ac
diff --git a/src/engine/blocks.js b/src/engine/blocks.js index <HASH>..<HASH> 100644 --- a/src/engine/blocks.js +++ b/src/engine/blocks.js @@ -1,7 +1,7 @@ const adapter = require('./adapter'); const mutationAdapter = require('./mutation-adapter'); const xmlEscape = require('../util/xml-escape'); -const {Map} = requi...
Switch to ordered maps of monitor records for monitor state
LLK_scratch-vm
train
9634af09d10576d207bf2375ff452aaeac53afcc
diff --git a/fastlane/lib/fastlane/version.rb b/fastlane/lib/fastlane/version.rb index <HASH>..<HASH> 100644 --- a/fastlane/lib/fastlane/version.rb +++ b/fastlane/lib/fastlane/version.rb @@ -1,4 +1,4 @@ module Fastlane - VERSION = '2.42.0'.freeze + VERSION = '2.43.0'.freeze DESCRIPTION = "The easiest way to autom...
Version bump to <I> (#<I>)
fastlane_fastlane
train
faa517c008e66ca81927a609f9cf022ca986f154
diff --git a/python_modules/dagster/dagster/core/definitions/dependency.py b/python_modules/dagster/dagster/core/definitions/dependency.py index <HASH>..<HASH> 100644 --- a/python_modules/dagster/dagster/core/definitions/dependency.py +++ b/python_modules/dagster/dagster/core/definitions/dependency.py @@ -178,17 +178,1...
Fix typo in docstring Test Plan: none Reviewers: sashank Reviewed By: sashank Differential Revision: <URL>
dagster-io_dagster
train
d2b0d1803952dc9997a8198cdad205031500d0c1
diff --git a/http/org.wso2.carbon.transport.http.netty/src/main/java/org/wso2/carbon/transport/http/netty/sender/RedirectHandler.java b/http/org.wso2.carbon.transport.http.netty/src/main/java/org/wso2/carbon/transport/http/netty/sender/RedirectHandler.java index <HASH>..<HASH> 100644 --- a/http/org.wso2.carbon.transpor...
When an exception is thrown in Redirecthandler, handle it using exceptionCaught method
wso2_transport-http
train
89af5f3ebf4e41c5f19ad9d827a0da72b2145da6
diff --git a/core/configuration/configuration.go b/core/configuration/configuration.go index <HASH>..<HASH> 100644 --- a/core/configuration/configuration.go +++ b/core/configuration/configuration.go @@ -19,6 +19,15 @@ type EnvironmentVerticals struct { Verticals map[string][]string `yaml:"verticals,flow"` } +ty...
Introduces ability to provide combinations based on the given vertical selection
almighty_almighty-test-runner
train
cd3f6e8f737c53f1ee6412e15c2b3f3472b9e124
diff --git a/lib/util.js b/lib/util.js index <HASH>..<HASH> 100644 --- a/lib/util.js +++ b/lib/util.js @@ -228,26 +228,24 @@ util = { if (!buffer || _.isString(buffer)) { return buffer || ''; } - var str = ''; - // Bail out immediately if it is an array buffer. - if...
Added the Buffer check instead of checking for ArrayBuffer
postmanlabs_postman-collection
train
c5d6e8c9dfa12f2d0f9a6bd190f5f3e5e6182695
diff --git a/packages/ra-data-graphql/src/index.js b/packages/ra-data-graphql/src/index.js index <HASH>..<HASH> 100644 --- a/packages/ra-data-graphql/src/index.js +++ b/packages/ra-data-graphql/src/index.js @@ -83,34 +83,38 @@ export default async options => { `${resource}.${aorFetchType}` ); - ...
Fix "dataProvider should return a rejected Promise" error in GraphQL providers Closes #<I>
marmelab_react-admin
train
2e4a2fac63eb6d401173151e86424403c1195a2e
diff --git a/fix_yahoo_finance/__init__.py b/fix_yahoo_finance/__init__.py index <HASH>..<HASH> 100644 --- a/fix_yahoo_finance/__init__.py +++ b/fix_yahoo_finance/__init__.py @@ -231,7 +231,12 @@ class Ticker(): # Getting data from json url = "{}/v8/finance/chart/{}".format(self._base_url, self.tick...
intercept yahoo "site down" message
ranaroussi_fix-yahoo-finance
train
d6645188f35712f49c38722b7f175103e534a5ee
diff --git a/pdvega/plotting.py b/pdvega/plotting.py index <HASH>..<HASH> 100644 --- a/pdvega/plotting.py +++ b/pdvega/plotting.py @@ -175,7 +175,7 @@ def andrews_curves( "detail": {"field": "sample", "type": "quantitative"}, } - if len(class_column.nunique()) > 20: + if alpha is None and df[class...
resolving mistake with opacity setting
altair-viz_pdvega
train
28a9c22d14fd530616ada6b86b7b8f8249c06601
diff --git a/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/XmlVisitorTest.php b/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/XmlVisitorTest.php index <HASH>..<HASH> 100644 --- a/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/XmlVisitorTest.php +++ b/tests/Guzzle/Tests/Service/Comm...
Used correct encoding for test setup and expectation. The above test was not running for on OSX + <I>, but was running fine for all versions of Linux. The issue this changed fixes is: i) The standard spelling for the encoding is UTF-8 not utf8. ii) XMLWriter on OSX apparently transparently converts the non-standa...
guzzle_guzzle3
train
5ac071c4da650bec87a89bbed1c58edcf4efc6ad
diff --git a/Connector/ZimbraConnector.php b/Connector/ZimbraConnector.php index <HASH>..<HASH> 100644 --- a/Connector/ZimbraConnector.php +++ b/Connector/ZimbraConnector.php @@ -1587,6 +1587,6 @@ class ZimbraConnector public function deleteMountPoint($accountName, $folderId) { - $this->delegateAuth(...
ZimbraConnector::deleteMountPoint accepts any account name
synaq_SynaqZasaBundle
train
8f7f179c57253ad6432467bb9721709318a779c5
diff --git a/src/org/jgroups/util/Headers.java b/src/org/jgroups/util/Headers.java index <HASH>..<HASH> 100644 --- a/src/org/jgroups/util/Headers.java +++ b/src/org/jgroups/util/Headers.java @@ -17,7 +17,7 @@ import java.util.Map; * <br/> * This class is not synchronized * @author Bela Ban - * @version $Id: Heade...
added _putHeader()
belaban_JGroups
train
9caaec9945a54d31b4b6895bc887041ce97c6f67
diff --git a/core/src/main/java/com/google/errorprone/bugpatterns/PredicateIncompatibleType.java b/core/src/main/java/com/google/errorprone/bugpatterns/PredicateIncompatibleType.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/google/errorprone/bugpatterns/PredicateIncompatibleType.java +++ b/core/src/main...
Fix crash in PredicateIncompatibleType if the guava predicate wasn't available. The handling of guava's predicate was unnecessary, since recent versions extend the JDK predicate. Also fix a mistake in the diagnostic message. RELNOTES: N/A ------------- Created by MOE: <URL>
google_error-prone
train
e7ccb2ea37f4ff3a1a7e6b8c0291521d686487cf
diff --git a/src/main/java/com/arangodb/internal/velocystream/VstCommunicationAsync.java b/src/main/java/com/arangodb/internal/velocystream/VstCommunicationAsync.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/arangodb/internal/velocystream/VstCommunicationAsync.java +++ b/src/main/java/com/arangodb/internal/v...
Issue #4 Passing transaction exception message to future's result
arangodb_arangodb-java-driver-async
train
b08c4d3124bc3478d3f034d6e1431ab7e7c473e1
diff --git a/app/src/components/portal/index.js b/app/src/components/portal/index.js index <HASH>..<HASH> 100644 --- a/app/src/components/portal/index.js +++ b/app/src/components/portal/index.js @@ -1,6 +1,7 @@ // @flow import * as React from 'react' import ReactDom from 'react-dom' +import { Box } from '@opentrons/...
fix(app): place top portal at higher z index than page level portal (#<I>) In order to ensure that top level modals render on top of any page level modals, this sets the z index of the top level portal root's contents to <I> as opposed to 1 for the page level portal
Opentrons_opentrons
train
0797b73aafee31a5974d3823e1059f1a2c085e5c
diff --git a/assembla/__init__.py b/assembla/__init__.py index <HASH>..<HASH> 100644 --- a/assembla/__init__.py +++ b/assembla/__init__.py @@ -13,9 +13,6 @@ class API(object): :secret Your Assembla API access details, available from https://www.assembla.com/user/edit/manage_clients - ...
Removing some out of date internal documentation.
markfinger_assembla
train
623c67f82759f75b20834aa82085593d553c6ec6
diff --git a/tests/test_register.py b/tests/test_register.py index <HASH>..<HASH> 100644 --- a/tests/test_register.py +++ b/tests/test_register.py @@ -137,7 +137,7 @@ class RegisterTestCase(PyPIRCCommandTestCase): # let's see what the server received : we should # have 2 similar requests - se...
Fix improper tests in RegisterTestCase
pypa_setuptools
train
3062481a24064d343032aacc7604fcdfe36adceb
diff --git a/pyecharts/base.py b/pyecharts/base.py index <HASH>..<HASH> 100644 --- a/pyecharts/base.py +++ b/pyecharts/base.py @@ -126,33 +126,27 @@ class Base(object): def _repr_html_(self): """ 渲染配置项并将图形显示在 notebook 中 """ - _tmp = 'notebook.html' dom = self._render_notebook_dom_...
:fire: remove intermediate codes for clarity
pyecharts_pyecharts
train
fde4f8ac8e5f9678b8fe39efac2d94c5304dca54
diff --git a/spacy/language.py b/spacy/language.py index <HASH>..<HASH> 100644 --- a/spacy/language.py +++ b/spacy/language.py @@ -39,6 +39,8 @@ from . import about class BaseDefaults(object): @classmethod def create_lemmatizer(cls, nlp=None, lookups=None): + if lookups is None: + lookups =...
Create lookups if not passed in
explosion_spaCy
train
df225799254788fd714485901b9dba214653daca
diff --git a/examples/file_logger.py b/examples/file_logger.py index <HASH>..<HASH> 100644 --- a/examples/file_logger.py +++ b/examples/file_logger.py @@ -16,7 +16,9 @@ FILENAME = "radiation.csv" LOGGING_PERIOD = 30 if __name__ == "__main__": - with RadiationWatch(24, 23) as radiationWatch: + try: + ra...
Use setup() / close() construct in file_logger sample
MonsieurV_PiPocketGeiger
train
0d79101224f24fc909cda5618a91b96fa45d517a
diff --git a/lib/tangerine/backlot.rb b/lib/tangerine/backlot.rb index <HASH>..<HASH> 100644 --- a/lib/tangerine/backlot.rb +++ b/lib/tangerine/backlot.rb @@ -13,8 +13,9 @@ module Tangerine class API def self.authenticate!(credentials) - @secret = credentials[:secret] - HTTP.default_params :...
creds become HashWithIndifferentAccess
factorylabs_Tangerine
train
aaf1d847cc34c20b48903bc65d03202ebfdf90fc
diff --git a/lib/linters/string_quotes.js b/lib/linters/string_quotes.js index <HASH>..<HASH> 100644 --- a/lib/linters/string_quotes.js +++ b/lib/linters/string_quotes.js @@ -6,12 +6,13 @@ var util = require('util'); module.exports = { name: 'stringQuotes', - nodeTypes: ['decl', 'rule'], + nodeTypes: ['at...
Ensure that stringQuotes checks at-rules. Closes #<I>
lesshint_lesshint
train
8bbd370ad12f692feb28a706fad7758f56891c89
diff --git a/Eloquent/Model.php b/Eloquent/Model.php index <HASH>..<HASH> 100755 --- a/Eloquent/Model.php +++ b/Eloquent/Model.php @@ -521,7 +521,7 @@ abstract class Model implements ArrayAccess, Arrayable, Jsonable, JsonSerializab $model->setRawAttributes((array) $attributes, true); - $model->setCo...
Make getConnectionName Overridable (#<I>) Use function call in newFromBuilder instead of class variable to allow for override of getConnectionName function
illuminate_database
train
4c02d72552b48aa62ecb24082eace453f78b755b
diff --git a/src/facade.js b/src/facade.js index <HASH>..<HASH> 100644 --- a/src/facade.js +++ b/src/facade.js @@ -37,6 +37,8 @@ var HtmlUnitDriverClass = java.import('org.openqa.selenium.htmlunit.HtmlUnitDriver'); var ChromeDriverClass = java.import('org.openqa.selenium.chrome.ChromeDriver'); +var FirefoxDriv...
closes #8: Add support for the FirefoxDriver. enhancement.
jsdevel_webdriver-sync
train
b95ecea760ade8d96d9d8bcb03704965102a969e
diff --git a/pug/nlp/djdb.py b/pug/nlp/djdb.py index <HASH>..<HASH> 100644 --- a/pug/nlp/djdb.py +++ b/pug/nlp/djdb.py @@ -14,6 +14,7 @@ from traceback import print_exc from django.core import serializers from django.db.models import related +from django.db import connection import progressbar as pb # import Pr...
rollback connections before re-attempting link-rels
hobson_pug
train
a14647396feaae5b283de6ceefd42bece14aa005
diff --git a/cgo15.go b/cgo15.go index <HASH>..<HASH> 100644 --- a/cgo15.go +++ b/cgo15.go @@ -4,7 +4,6 @@ package gb import ( "path/filepath" - "strconv" "strings" )
fix missing imports (go <I>)
constabulary_gb
train
79e54dc2630f4a44229d81a2c9731da36e94cca5
diff --git a/lib/localized_fields/form_builder.rb b/lib/localized_fields/form_builder.rb index <HASH>..<HASH> 100644 --- a/lib/localized_fields/form_builder.rb +++ b/lib/localized_fields/form_builder.rb @@ -16,23 +16,20 @@ module LocalizedFields end def text_field(attribute, options = {}) - if @opt...
Refatoring LocalizedFields::FormBuilder to remove duplications.
tiagogodinho_localized_fields
train
cbdbc469e7c6dd9d8d9c51828d35b090d825edf9
diff --git a/src/connection/database/index.js b/src/connection/database/index.js index <HASH>..<HASH> 100644 --- a/src/connection/database/index.js +++ b/src/connection/database/index.js @@ -9,14 +9,8 @@ import trim from 'trim'; const { get, initNS, tget, tset } = dataFns(["database"]); export function initDatabase...
Don't throw when option field register fails
auth0_lock
train
d981dadc2a58aa63dc8b74c66e06279465b76974
diff --git a/packages/ember-glimmer/tests/integration/helpers/element-action-test.js b/packages/ember-glimmer/tests/integration/helpers/element-action-test.js index <HASH>..<HASH> 100644 --- a/packages/ember-glimmer/tests/integration/helpers/element-action-test.js +++ b/packages/ember-glimmer/tests/integration/helpers/...
Unify another element action modify test Unsure if we need to be testing the implementation details here, but the difference is trivial.
emberjs_ember.js
train
c82ed0a8b03056f4d8f98549419ba6296510f62a
diff --git a/lib/outputrenderers.php b/lib/outputrenderers.php index <HASH>..<HASH> 100644 --- a/lib/outputrenderers.php +++ b/lib/outputrenderers.php @@ -1320,7 +1320,7 @@ END; } $scalearray = array(RATING_UNSET_RATING => $strrate.'...') + $scalearray; - $strratings .= html_write...
rating MDL-<I> changed ratings rendering to avoid a nonconstant element name
moodle_moodle
train
ae00fc08c1c9812ef312d99f60a0a3c9b6f00ef9
diff --git a/lib/thin.rb b/lib/thin.rb index <HASH>..<HASH> 100644 --- a/lib/thin.rb +++ b/lib/thin.rb @@ -488,9 +488,9 @@ module CloudProviders puts "-----> Checking for launch configuration named: #{name}" if should_create_launch_configuration? create_launch_configuration! - end - if ...
Made trying to create the launch config a little smarter
auser_poolparty
train
e582032136d44e803eac7a8a27858a430c250724
diff --git a/lib/mongo_mapper/plugins/modifiers.rb b/lib/mongo_mapper/plugins/modifiers.rb index <HASH>..<HASH> 100644 --- a/lib/mongo_mapper/plugins/modifiers.rb +++ b/lib/mongo_mapper/plugins/modifiers.rb @@ -21,20 +21,22 @@ module MongoMapper updates.each do |key, value| updates[key] = keys[k...
Allow passing update options for set and unset modifiers as documented in #<I>
mongomapper_mongomapper
train
bf212edca5d2d73978953ec46d114c3401f22305
diff --git a/app/javascript/client_messenger/homePanel.js b/app/javascript/client_messenger/homePanel.js index <HASH>..<HASH> 100644 --- a/app/javascript/client_messenger/homePanel.js +++ b/app/javascript/client_messenger/homePanel.js @@ -301,22 +301,19 @@ const HomePanel = ({ </ConversationsBlock> }...
Update homePanel.js
michelson_chaskiq
train
775451fb2787e23c89dd70cd6f73e5c78fa670af
diff --git a/lib/fog/aws/sqs.rb b/lib/fog/aws/sqs.rb index <HASH>..<HASH> 100644 --- a/lib/fog/aws/sqs.rb +++ b/lib/fog/aws/sqs.rb @@ -40,7 +40,7 @@ module Fog setup_credentials(options) @region = options[:region] || 'us-east-1' - unless ['ap-northeast-1', 'ap-southeast-1', 'ap-southeas...
[AWS|SQS] Update list of regions allowed by mocks
fog_fog
train
8e17da1db2ddf1972f4177e5dafb66dc4108224b
diff --git a/lib/ruby_speech/generic_element.rb b/lib/ruby_speech/generic_element.rb index <HASH>..<HASH> 100644 --- a/lib/ruby_speech/generic_element.rb +++ b/lib/ruby_speech/generic_element.rb @@ -106,8 +106,8 @@ module RubySpeech self.class.new(new_doc).tap do |new_element| new_doc.root = new_element...
[BUGFIX] Ensure that concatenating documents doesn't mutate the originals
adhearsion_ruby_speech
train
228375348c9113324370afa0aca4120eb117d3e1
diff --git a/lib/sugarcrm/associations/association.rb b/lib/sugarcrm/associations/association.rb index <HASH>..<HASH> 100644 --- a/lib/sugarcrm/associations/association.rb +++ b/lib/sugarcrm/associations/association.rb @@ -54,10 +54,9 @@ module SugarCRM end # Generates the association proxy method for r...
bugfix: get relationships with humanized names to work before, given a relationship, document.tasks.size wouldn't behave correctly
chicks_sugarcrm
train
e66244639348ab2936f2307220b7128887c8c27e
diff --git a/sprd/view/svg/PrintAreaViewer.js b/sprd/view/svg/PrintAreaViewer.js index <HASH>..<HASH> 100644 --- a/sprd/view/svg/PrintAreaViewer.js +++ b/sprd/view/svg/PrintAreaViewer.js @@ -61,6 +61,11 @@ define(['js/svg/SvgElement', 'sprd/view/svg/ConfigurationViewer'], function (Svg return; ...
only show configurations on the correct print areas
spreadshirt_rAppid.js-sprd
train
9de41fbcf50927b954de74f91584989765aacb55
diff --git a/spec/refile/active_record_helper.rb b/spec/refile/active_record_helper.rb index <HASH>..<HASH> 100644 --- a/spec/refile/active_record_helper.rb +++ b/spec/refile/active_record_helper.rb @@ -11,6 +11,7 @@ ActiveRecord::Base.establish_connection( class TestMigration < ActiveRecord::Migration def self.up ...
Add tests for nested attachments
refile_refile
train
325fad2a40b63a842b6436b732133095b5a52f42
diff --git a/lxd/apparmor/instance.go b/lxd/apparmor/instance.go index <HASH>..<HASH> 100644 --- a/lxd/apparmor/instance.go +++ b/lxd/apparmor/instance.go @@ -57,35 +57,11 @@ func InstanceLoad(state *state.State, inst instance) error { } } - /* In order to avoid forcing a profile parse (potentially slow) on - *...
lxd/apparmor/instance: Move instance profile generation into new function instanceProfileGenerate
lxc_lxd
train
15ee6abd75bb30c2c721d4c8ba6d8fe63653870d
diff --git a/lib/neo4j/core.rb b/lib/neo4j/core.rb index <HASH>..<HASH> 100644 --- a/lib/neo4j/core.rb +++ b/lib/neo4j/core.rb @@ -1 +1,2 @@ require 'neo4j/core/config' +require 'neo4j/transaction'
Add neo4j/transaction to startup
neo4jrb_neo4j-core
train
0a9a912208f35fa7e3c04b0bc4c02407f84b330b
diff --git a/app/addons/documents/routes-doc-editor.js b/app/addons/documents/routes-doc-editor.js index <HASH>..<HASH> 100644 --- a/app/addons/documents/routes-doc-editor.js +++ b/app/addons/documents/routes-doc-editor.js @@ -41,8 +41,8 @@ const DocEditorRouteObject = FauxtonAPI.RouteObject.extend({ 'database/:da...
Fix: new doc route is invalid when partition is selected (#<I>)
apache_couchdb-fauxton
train
b0d07b9d38b77a3b19c9d43f418c9f35feaed3f5
diff --git a/libkbfs/journal_md_ops.go b/libkbfs/journal_md_ops.go index <HASH>..<HASH> 100644 --- a/libkbfs/journal_md_ops.go +++ b/libkbfs/journal_md_ops.go @@ -80,6 +80,16 @@ func (j journalMDOps) getHeadFromJournal( return ImmutableRootMetadata{}, nil } + if mStatus == Unmerged && bid == NullBranchID { + //...
journal_md_ops: fix GetForHandle(Unmerged) for journal branches (#<I>) GetForHandle doesn't know the branch ID yet, so must pass in NullBranchID. So if there's a branch, we have to look up the right branch ID first in that case, now that `getHead` requires it. Issue: KBFS-<I>
keybase_client
train
a43e78d70509f32f1e74b523088223dc3d5f827a
diff --git a/mautrix/appservice/api/intent.py b/mautrix/appservice/api/intent.py index <HASH>..<HASH> 100644 --- a/mautrix/appservice/api/intent.py +++ b/mautrix/appservice/api/intent.py @@ -50,7 +50,6 @@ ENSURE_JOINED_METHODS = ( ClientAPI.get_event, ClientAPI.get_state_event, ClientAPI.get_state, ClientAPI....
appservice: Send receipts for unjoined rooms Fixes #<I>
tulir_mautrix-python
train
18cb39a4d4d687900c0ebb7d685b5874c1b53c18
diff --git a/src/AndKirby/Composer/MultiRepo/Downloader/GitMultiRepoDownloader.php b/src/AndKirby/Composer/MultiRepo/Downloader/GitMultiRepoDownloader.php index <HASH>..<HASH> 100644 --- a/src/AndKirby/Composer/MultiRepo/Downloader/GitMultiRepoDownloader.php +++ b/src/AndKirby/Composer/MultiRepo/Downloader/GitMultiRepo...
- Added an ability to set custom directory for multi package directories.
andkirby_multi-repo-composer
train
afd83fa91b55141ddb81d3dab75dd123a221aa13
diff --git a/pyramid_swagger/load_schema.py b/pyramid_swagger/load_schema.py index <HASH>..<HASH> 100644 --- a/pyramid_swagger/load_schema.py +++ b/pyramid_swagger/load_schema.py @@ -7,13 +7,16 @@ from __future__ import absolute_import from __future__ import unicode_literals from collections import namedtuple +from...
Update SchemaValidator.from_schema to not use deprecated functions
striglia_pyramid_swagger
train
1f73287e890a4c68f240dcc8b6966de1e62b65cc
diff --git a/kafka/consumer/group.py b/kafka/consumer/group.py index <HASH>..<HASH> 100644 --- a/kafka/consumer/group.py +++ b/kafka/consumer/group.py @@ -552,11 +552,9 @@ class KafkaConsumer(six.Iterator): committed = None return committed - def topics(self): - """Get all topics t...
Make partitions_for_topic a read-through cache (#<I>) If the cluster metadata object has no info about the topic, then issue a blocking metadata call to fetch it.
dpkp_kafka-python
train
401f889f4b79c1321f51a09298c94a1ab99ecb48
diff --git a/fgivenx/contours.py b/fgivenx/contours.py index <HASH>..<HASH> 100644 --- a/fgivenx/contours.py +++ b/fgivenx/contours.py @@ -81,9 +81,6 @@ class Contours(object): # Compute densities across the grid self.z = [[m(y) for m in masses] for y in self.y] - self.cbar = None - - de...
Added fix to remove the annoying white lines
williamjameshandley_fgivenx
train
ec2a663637ac6ec3daeae4a5ef4b8705d391ebb4
diff --git a/pifpaf/drivers/aodh.py b/pifpaf/drivers/aodh.py index <HASH>..<HASH> 100644 --- a/pifpaf/drivers/aodh.py +++ b/pifpaf/drivers/aodh.py @@ -82,12 +82,14 @@ class AodhDriver(drivers.Driver): with open(conffile, "w") as f: f.write("""[database] connection = %s +[api] +port = %d [service...
Fix Aodh and Gnocchi ports
jd_pifpaf
train
e91bd9e50379ed84c1522796b2f3edfb43931be1
diff --git a/src/commands/util/eval.js b/src/commands/util/eval.js index <HASH>..<HASH> 100644 --- a/src/commands/util/eval.js +++ b/src/commands/util/eval.js @@ -126,7 +126,7 @@ module.exports = class EvalCommand extends Command { if(client.token) pattern += escapeRegex(client.token); if(client.email) pattern ...
Fixed sensitivePattern visibility in eval
discordjs_Commando
train
fb33c2e8dd15d3d396ecc774a2230d9e8fbdd55c
diff --git a/pyqode/python/panels/symbol_browser.py b/pyqode/python/panels/symbol_browser.py index <HASH>..<HASH> 100644 --- a/pyqode/python/panels/symbol_browser.py +++ b/pyqode/python/panels/symbol_browser.py @@ -5,6 +5,7 @@ SymbolBrowserPanel import logging from pyqode.core.api import Panel, TextHelper from pyqod...
Fix symbol browser was not using the new OutlineMode
pyQode_pyqode.python
train
0640b6d9e72a12218efcdf1a1bd15add41278a72
diff --git a/ContentManager/Permalink/PermalinkGenerator.php b/ContentManager/Permalink/PermalinkGenerator.php index <HASH>..<HASH> 100644 --- a/ContentManager/Permalink/PermalinkGenerator.php +++ b/ContentManager/Permalink/PermalinkGenerator.php @@ -226,7 +226,7 @@ class PermalinkGenerator implements PermalinkGenerato...
Replaced `urlendoce` by `rawurlencode`
spress_spress-core
train
64190b71092a37ab760eb7f00ef3cc20a39a8bdd
diff --git a/src/ol/TileCache.js b/src/ol/TileCache.js index <HASH>..<HASH> 100644 --- a/src/ol/TileCache.js +++ b/src/ol/TileCache.js @@ -1,21 +1,17 @@ /** * @module ol/TileCache */ -import {inherits} from './util.js'; import LRUCache from './structs/LRUCache.js'; import {fromKey, getKey} from './tilecoord.js';...
Use extends and super for TileCache
openlayers_openlayers
train
1e153c29c25e52de317e76e3c39e096de2296b5b
diff --git a/spec/lib/active_remote/serialization_spec.rb b/spec/lib/active_remote/serialization_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/active_remote/serialization_spec.rb +++ b/spec/lib/active_remote/serialization_spec.rb @@ -1,5 +1,13 @@ require 'spec_helper' describe ActiveRemote::Serialization do - ...
Stubbed out the serialization specs.
liveh2o_active_remote
train
2a4481a12758103e52203b90d904118e5502ade6
diff --git a/lib/fat_model_auth/view_helpers.rb b/lib/fat_model_auth/view_helpers.rb index <HASH>..<HASH> 100644 --- a/lib/fat_model_auth/view_helpers.rb +++ b/lib/fat_model_auth/view_helpers.rb @@ -1,17 +1,11 @@ module FatModelAuth module ViewHelpers def allowed_to?(options) - authority = options.values....
Refactor a bit: Inline ViewHelpers#actions
brentgreeff_fat_model_auth
train
103d878972ac2fd51e3694613407cb2e355126fe
diff --git a/src/org/opencms/ade/containerpage/CmsElementUtil.java b/src/org/opencms/ade/containerpage/CmsElementUtil.java index <HASH>..<HASH> 100644 --- a/src/org/opencms/ade/containerpage/CmsElementUtil.java +++ b/src/org/opencms/ade/containerpage/CmsElementUtil.java @@ -281,6 +281,10 @@ public class CmsElementUtil ...
Fixing issue where title property was used instead content title for group containers.
alkacon_opencms-core
train
103609794c79536ade9dff6cdc92e94a8b2042c5
diff --git a/util/cert/cert.go b/util/cert/cert.go index <HASH>..<HASH> 100644 --- a/util/cert/cert.go +++ b/util/cert/cert.go @@ -252,6 +252,12 @@ func TokenizedDataToPublicKey(hostname string, subType string, rawKeyData string return hostnames, keyData, nil } +// Returns the requested pattern with all possible s...
Escape square brackets in pattern matching hostnames (fixes #<I>) (#<I>)
argoproj_argo-cd
train
9d077b96095b2f6495ca14550ae5625717250487
diff --git a/app/models/scaptimony/scap_content.rb b/app/models/scaptimony/scap_content.rb index <HASH>..<HASH> 100644 --- a/app/models/scaptimony/scap_content.rb +++ b/app/models/scaptimony/scap_content.rb @@ -29,7 +29,9 @@ module Scaptimony class ScapContent < ActiveRecord::Base has_many :scap_content_profi...
fixes OpenSCAP/foreman_openscap#4 - Support deletion of scap_content
OpenSCAP_scaptimony
train
a587d114466f740ea1edef2792a06a61bfcbe3d5
diff --git a/ArgusCore/src/main/java/com/salesforce/dva/argus/system/SystemConfiguration.java b/ArgusCore/src/main/java/com/salesforce/dva/argus/system/SystemConfiguration.java index <HASH>..<HASH> 100644 --- a/ArgusCore/src/main/java/com/salesforce/dva/argus/system/SystemConfiguration.java +++ b/ArgusCore/src/main/jav...
make WardenService a configurable binding
salesforce_Argus
train