hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
3b066dd8ceb6c39cf6a7dc3fed9b6f373e1eec4a
diff --git a/nitroSdk.js b/nitroSdk.js index <HASH>..<HASH> 100644 --- a/nitroSdk.js +++ b/nitroSdk.js @@ -19,6 +19,8 @@ String.prototype.toCamelCase = function camelize() { }); } +var httpAgent; +var httpsAgent; var dest = {}; var rateLimitEvents = 0; var inFlight = 0; @@ -107,6 +109,7 @@ function makeReque...
nitroSdk; set up request agents using keepAlive true
MikeRalphson_bbcparse
train
12aaafc1714da82b3b95ac2f9bd3a3778ef16b2c
diff --git a/test/app/site.js b/test/app/site.js index <HASH>..<HASH> 100644 --- a/test/app/site.js +++ b/test/app/site.js @@ -10,4 +10,19 @@ require("redux") const {render} = require("react-dom") -render(<App />, document.getElementById("app")) +console.log("Increment site.js reload counter...") +window._siteRelo...
Add test setup in order to test broken reload propagation guards, #<I>
milankinen_livereactload
train
d297703f18a4327e4614e4f1adb199a3a35c7d96
diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/db/sql/DbSqlSessionFactory.java b/engine/src/main/java/org/camunda/bpm/engine/impl/db/sql/DbSqlSessionFactory.java index <HASH>..<HASH> 100644 --- a/engine/src/main/java/org/camunda/bpm/engine/impl/db/sql/DbSqlSessionFactory.java +++ b/engine/src/main/java/o...
fix(engine): add missing oracle query mapping * Map new (hierarchical) cleanup select for Oracle in DbSqlSessionFactory * Adjust timestamps in new test case Related to CAM-<I>
camunda_camunda-bpm-platform
train
f27f2688846a1d56dceabc2b4e55bd3ffc35f530
diff --git a/vyper/parser/stmt.py b/vyper/parser/stmt.py index <HASH>..<HASH> 100644 --- a/vyper/parser/stmt.py +++ b/vyper/parser/stmt.py @@ -176,6 +176,13 @@ class Stmt(object): self.context.set_in_assignment(False) return o + def _check_implicit_conversion(self, var_id, sub): + target_t...
Refactor implicit conversion checking into its own helper function, add BaseType check for variable being assigned to
ethereum_vyper
train
06e12bf16220ec55e0ac665551c62a5ff8f104d6
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ expect(a).to.equal(b); ### .keys(key1[, key2, ...[, keyN]]) -- **@param** *{ String... | Array }* key*N* +- **@param** *{ String... | Array | Object }* key*N* Asserts that the keyed collection contai...
Make keys assertion also accept an Object and use its keys to check against
astorije_chai-immutable
train
ca48e726cd3c1d75c69dc1bc0014b789cf595c6a
diff --git a/lib/decor/virtuals.js b/lib/decor/virtuals.js index <HASH>..<HASH> 100644 --- a/lib/decor/virtuals.js +++ b/lib/decor/virtuals.js @@ -21,11 +21,11 @@ module.exports = { model.set(property, value); }); } else { - if (loadingModel || !model.load) return; + /*if (loadi...
don't load model if property doesn't exist
crcn_mojo-models
train
0b768ad0d439655bc4463f4d2ccb10ce726c4871
diff --git a/bsdploy/tests/test_bootstrap_mfsbsd.py b/bsdploy/tests/test_bootstrap_mfsbsd.py index <HASH>..<HASH> 100644 --- a/bsdploy/tests/test_bootstrap_mfsbsd.py +++ b/bsdploy/tests/test_bootstrap_mfsbsd.py @@ -131,7 +131,7 @@ def test_bootstrap(bootstrap, put_mock, run_mock, tempdir, yesno_mock): ('sysctl...
test adjustment to the fixup of the revert.... (in <I>d7bd<I>ea<I>c<I>c<I>f7c<I>f<I>)
ployground_bsdploy
train
1cdb9c5f78fd07f491846558092ae1d1d09f7e5c
diff --git a/app/patients/edit/route.js b/app/patients/edit/route.js index <HASH>..<HASH> 100644 --- a/app/patients/edit/route.js +++ b/app/patients/edit/route.js @@ -4,9 +4,10 @@ import PatientId from 'hospitalrun/mixins/patient-id'; export default AbstractEditRoute.extend(PatientId, { editTitle: 'Edit Patient',...
Changed to use views to get child records.
HospitalRun_hospitalrun-frontend
train
3083798c97f453c3dbd5c9b16cf91846f69bb26f
diff --git a/src/pharext/Cli/Command.php b/src/pharext/Cli/Command.php index <HASH>..<HASH> 100644 --- a/src/pharext/Cli/Command.php +++ b/src/pharext/Cli/Command.php @@ -3,6 +3,7 @@ namespace pharext\Cli; use pharext\Archive; +use pharext\Metadata; use Phar; @@ -10,7 +11,7 @@ trait Command { /** * Comma...
fix metadata retrieval when not running as phar
pharext_pharext
train
01b061ace943ab26cd5c87965851cb7e1c2e35a9
diff --git a/providence-thrift/src/main/java/net/morimekta/providence/thrift/client/NonblockingSocketClientHandler.java b/providence-thrift/src/main/java/net/morimekta/providence/thrift/client/NonblockingSocketClientHandler.java index <HASH>..<HASH> 100644 --- a/providence-thrift/src/main/java/net/morimekta/providence/...
Make thrift clients handle timeouts.
morimekta_providence
train
2941453de87390567560d376fd92ec43c5ea10c7
diff --git a/src/Mpociot/BotMan/Conversation.php b/src/Mpociot/BotMan/Conversation.php index <HASH>..<HASH> 100644 --- a/src/Mpociot/BotMan/Conversation.php +++ b/src/Mpociot/BotMan/Conversation.php @@ -48,13 +48,22 @@ abstract class Conversation public function repeat($question = '') { $conversation...
Make repeat work for array of callbacks too
botman_botman
train
362ac43bf921491a9520e6db4073f66ad103a7fd
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,11 @@ mod_names.sort() # create extension modules list ext_modules = [] -mod_src_dir = os.path.join('src', 'swig-gp' + gphoto2_version) +mod_src_dir = os.path.join('src', 'swig-bi-gp' + gphoto2_version + + ...
Easier selection of appropriate SWIG options 'build_swig' now builds both '-builtin' and not built in versions (unless old SWIG with deffective -builtin is in use). 'build' now chooses -builtin unless Python <I> is in use. This should make it safe for Python <I> users to install from PyPI and for anyone to build from ...
jim-easterbrook_python-gphoto2
train
c5535c60314e7444dcc4f56640bd871fae9a1e40
diff --git a/test/Buybrain/Nervus/Adapter/SignalAdapterTest.php b/test/Buybrain/Nervus/Adapter/SignalAdapterTest.php index <HASH>..<HASH> 100644 --- a/test/Buybrain/Nervus/Adapter/SignalAdapterTest.php +++ b/test/Buybrain/Nervus/Adapter/SignalAdapterTest.php @@ -8,6 +8,7 @@ use Buybrain\Nervus\Adapter\Message\SignalReq...
Little cleaning up in signal adapter test
buybrain_nervus-php
train
65f4dd2e95bfa875b07bdae67c3352d909150a69
diff --git a/lib/jmespath/nodes/subexpression.rb b/lib/jmespath/nodes/subexpression.rb index <HASH>..<HASH> 100644 --- a/lib/jmespath/nodes/subexpression.rb +++ b/lib/jmespath/nodes/subexpression.rb @@ -12,18 +12,52 @@ module JMESPath end def optimize - left = @left.optimize - right = @rig...
Flatten runs of Subexpression Also combine runs of Field
jmespath_jmespath.rb
train
2c92ea635ed01288772a89ac0568abc368c09de6
diff --git a/src/runner.js b/src/runner.js index <HASH>..<HASH> 100644 --- a/src/runner.js +++ b/src/runner.js @@ -146,16 +146,16 @@ function deepEquals(x, y) { return arrayEquals(x, y) } } - else if (isObject(x)) { - if (isObject(y)) { - return objectEquals(x, y) - } - } else if (isSet(x...
fix: stop doing object comparison on sets
aleclarson_testpass
train
e88c8b026096710289d3d9342fbd490956b576fd
diff --git a/src/board.py b/src/board.py index <HASH>..<HASH> 100644 --- a/src/board.py +++ b/src/board.py @@ -124,6 +124,9 @@ elif board_id == ap_board.ORANGE_PI_3: elif board_id == ap_board.BANANA_PI_M2_ZERO: from adafruit_blinka.board.bananapi.bpim2zero import * +elif board_id == ap_board.BANANA_PI_M5: + ...
Add Banana Pi M5 support to board.py
adafruit_Adafruit_Blinka
train
9fa0f84503e1175ab256e8c65355f92424a89d68
diff --git a/integration_tests/benchmarks/index.js b/integration_tests/benchmarks/index.js index <HASH>..<HASH> 100644 --- a/integration_tests/benchmarks/index.js +++ b/integration_tests/benchmarks/index.js @@ -56,7 +56,7 @@ async function runBenchmark(artifactsDir, modelName, config) { const trainTimeMs = (trainEnd...
Fix bad bug in benchmarks (#<I>) * Fix bad bug in benchmarks
tensorflow_tfjs
train
d04aa08b194ed5cd853f7265863e36e52424f546
diff --git a/quarkc/lib/datawire-quark-core.rb b/quarkc/lib/datawire-quark-core.rb index <HASH>..<HASH> 100644 --- a/quarkc/lib/datawire-quark-core.rb +++ b/quarkc/lib/datawire-quark-core.rb @@ -1043,12 +1043,8 @@ module DatawireQuarkCore end def self.cast(value, &block) - type = begin block.call rescue Obje...
Disable runtime type checking on Python, Javascript and Ruby (hopefully temporarily) since it's blocking Promise usage.
datawire_quark
train
001e42124934411925e03dcaee0ed37da2f45626
diff --git a/src-test/morfologik/fsa/FSA5Test.java b/src-test/morfologik/fsa/FSA5Test.java index <HASH>..<HASH> 100644 --- a/src-test/morfologik/fsa/FSA5Test.java +++ b/src-test/morfologik/fsa/FSA5Test.java @@ -60,9 +60,9 @@ public final class FSA5Test { final FSA fsa3 = Dictionary.getForLanguage("pl").fsa; FSAI...
JUnit test corrected after dictionary update.
morfologik_morfologik-stemming
train
b1dba206ab55a371c0645d9a274c6dbd6f314683
diff --git a/test/1_process_engine/parallel_gateway_test.js b/test/1_process_engine/parallel_gateway_test.js index <HASH>..<HASH> 100644 --- a/test/1_process_engine/parallel_gateway_test.js +++ b/test/1_process_engine/parallel_gateway_test.js @@ -1,7 +1,7 @@ 'use strict'; const should = require('should'); -const Te...
:recycle: :white_check_mark: Use short-form imports in some tests
process-engine_process_engine_runtime
train
a1e34db592a0df4e900eee72351409928b5ede3b
diff --git a/tools/format.js b/tools/format.js index <HASH>..<HASH> 100755 --- a/tools/format.js +++ b/tools/format.js @@ -6,7 +6,9 @@ require('colors'); var fs = require('fs'); var program = require('commander'); -require('../node_modules/babel-core/register'); +require('babel-register')({ + presets: ['es2015'] +...
Fix tools/format to work with babel6
l20n_l20n.js
train
4ca83e4c25d6cb1c97be6a2e1177d916355f274e
diff --git a/examples/crypton/app.js b/examples/crypton/app.js index <HASH>..<HASH> 100644 --- a/examples/crypton/app.js +++ b/examples/crypton/app.js @@ -8,12 +8,7 @@ function start (session) { options: { session: session } - }); - - setTimeout(function () { - // render the result of an ls() on p...
don't wait a second for files to be ready - add fs init callback
ecto_crate
train
3166adb9a40013b26f54588415c525c30e7d856b
diff --git a/axes/middleware.py b/axes/middleware.py index <HASH>..<HASH> 100644 --- a/axes/middleware.py +++ b/axes/middleware.py @@ -1,31 +1,11 @@ -from django.contrib import admin from django.contrib.auth import views as auth_views + from axes.decorators import watch_login class FailedLoginMiddleware(object):...
Removed duplicated watching for the login function, because admin uses the login function from auth.views too. Fixes #<I>
jazzband_django-axes
train
9dfdc3eb3668971523d7d2f24f87f5b1333b545a
diff --git a/tsdb/index/postings_test.go b/tsdb/index/postings_test.go index <HASH>..<HASH> 100644 --- a/tsdb/index/postings_test.go +++ b/tsdb/index/postings_test.go @@ -818,10 +818,13 @@ func TestWithoutPostings(t *testing.T) { func BenchmarkPostings_Stats(b *testing.B) { p := NewMemPostings() + var seriesID uin...
Speed up BenchmarkPostings_Stats (#<I>) The previous code re-used series IDs 1-<I> many times over, so a lot of time was spent ensuring the lists of series were in ascending order. The intended use of `MemPostings.Add()` is that all series IDs are unique, and changing the benchmark to do this lets it finish ten tim...
prometheus_prometheus
train
e0c7837a70912a285ca6b336b3aea03f0ec48a34
diff --git a/server/irc/state.js b/server/irc/state.js index <HASH>..<HASH> 100755 --- a/server/irc/state.js +++ b/server/irc/state.js @@ -17,11 +17,19 @@ var State = function (client, save_state) { this.client.on('dispose', function () { if (!that.save_state) { _.each(that.irc_connections, f...
Disposing IrcConnection object correctly when Client is disposed
prawnsalad_KiwiIRC
train
4141b823bb81404efdb1178335440af2c2d53772
diff --git a/lib/version.rb b/lib/version.rb index <HASH>..<HASH> 100644 --- a/lib/version.rb +++ b/lib/version.rb @@ -1,3 +1,3 @@ module JekyllToc - VERSION = '0.8.0'.freeze + VERSION = '0.9.0.beta1'.freeze end
Strat developing <I>.beta1
toshimaru_jekyll-toc
train
40828c7ad823a5f9677cf1043c85e91ce9253202
diff --git a/holoviews/streams.py b/holoviews/streams.py index <HASH>..<HASH> 100644 --- a/holoviews/streams.py +++ b/holoviews/streams.py @@ -14,6 +14,9 @@ from .core import util from contextlib import contextmanager +# Types supported by Pointer derived streams +pointer_types = (Number, util.basestring, tuple)+u...
Added support for date types on Pointer derived streams (#<I>)
pyviz_holoviews
train
6aeeaf7a5cbb4b9f0448fb5362de679f8668754d
diff --git a/presto-main/src/test/java/com/facebook/presto/sql/planner/iterative/rule/test/RuleTester.java b/presto-main/src/test/java/com/facebook/presto/sql/planner/iterative/rule/test/RuleTester.java index <HASH>..<HASH> 100644 --- a/presto-main/src/test/java/com/facebook/presto/sql/planner/iterative/rule/test/RuleT...
Accept system properties in RuleTester
prestodb_presto
train
ab1bf389c892b9232161f0a72f7bb5d8ac531b74
diff --git a/hangups/ui/__main__.py b/hangups/ui/__main__.py index <HASH>..<HASH> 100644 --- a/hangups/ui/__main__.py +++ b/hangups/ui/__main__.py @@ -716,6 +716,7 @@ class ConversationEventListWalker(urwid.ListWalker): self._conversation.on_watermark_notification.add_observer( self._on_watermark_...
Fix pylint warning after upgrading urwid
tdryer_hangups
train
ddc8a59192f27b327061dd16b718592fc944d0ba
diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index <HASH>..<HASH> 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -9,8 +9,8 @@ }, { "ImportPath": "github.com/bitrise-io/envman/models", - "Comment": "0.9.3-16-gf513cb3", - "Rev": "f513cb3c57d3876d703fa2597d7f720b8a664211" + "Comment": ...
PR fixes (<I> squashed commit) Squashed commits: [<I>f<I>] godep-update (<I> squashed commits) Squashed commits: [f8a<I>b] code style [<I>] validate step source
bitrise-io_stepman
train
b641f0f6eea2979604cb5e785b581bfeb54bfcf5
diff --git a/themes/phenomic-theme-base/webpack.config.babel.js b/themes/phenomic-theme-base/webpack.config.babel.js index <HASH>..<HASH> 100644 --- a/themes/phenomic-theme-base/webpack.config.babel.js +++ b/themes/phenomic-theme-base/webpack.config.babel.js @@ -47,7 +47,7 @@ export const makeConfig = (config = {}) => ...
Removed: eslint-loader "fix" option has been removed from theme-base (#<I>) Closes #<I>.
phenomic_phenomic
train
ff693eb143afecb9d30739d9b22c4687aff0f26f
diff --git a/server/integration/infinispan/src/main/java/org/jboss/as/clustering/infinispan/subsystem/InfinispanSubsystemXMLReader_6_0.java b/server/integration/infinispan/src/main/java/org/jboss/as/clustering/infinispan/subsystem/InfinispanSubsystemXMLReader_6_0.java index <HASH>..<HASH> 100644 --- a/server/integratio...
ISPN-<I> Custom cache store and cache loader sets SHARED attribute to the value of NAME attribute
infinispan_infinispan
train
cbc39d5c0a74846a40e02cafdc4bad4399a00d31
diff --git a/lib/core/engine/collector.js b/lib/core/engine/collector.js index <HASH>..<HASH> 100644 --- a/lib/core/engine/collector.js +++ b/lib/core/engine/collector.js @@ -113,7 +113,7 @@ class Collector { results.info.description = allData.description; results.info.title = allData.title; - if (...
Catch if navigation fails so the result is still generated. (#<I>)
sitespeedio_browsertime
train
b444a08306fdb95a2eee2926a5b3f962d4522212
diff --git a/formats/gff.py b/formats/gff.py index <HASH>..<HASH> 100644 --- a/formats/gff.py +++ b/formats/gff.py @@ -239,27 +239,15 @@ def get_piles(allgenes): """ Before running uniq, we need to compute all the piles. The piles are a set of redundant features we want to get rid of. Input are a list of...
improve run time performance for formats.gff.uniq()
tanghaibao_jcvi
train
f16fcdfc6e0195e4b7b2e338c34f4aa8c5e80f48
diff --git a/src/Processor/Link.php b/src/Processor/Link.php index <HASH>..<HASH> 100755 --- a/src/Processor/Link.php +++ b/src/Processor/Link.php @@ -135,7 +135,11 @@ class Link implements ProcessorInterface if (isset($config['link-file'])) { return $config['link-file']; } - $target = Handler\Ab...
introduce color-only for link-type
20steps_bricks-platform-composer-extras
train
a30bb57aa16cb6290eda37c4045546a2c83cea7c
diff --git a/estnltk/annotation_validator.py b/estnltk/annotation_validator.py index <HASH>..<HASH> 100644 --- a/estnltk/annotation_validator.py +++ b/estnltk/annotation_validator.py @@ -285,3 +285,31 @@ def find_short_sentences_generator( text: 'Text', min_words:int=2 ): results['sentences'].append( n...
Updated annotation validator: detection of sentences containing paragraph endings
estnltk_estnltk
train
3a5bf8d280eb817107bde9f6b6f423c30196bd0d
diff --git a/tests/AllTests.php b/tests/AllTests.php index <HASH>..<HASH> 100644 --- a/tests/AllTests.php +++ b/tests/AllTests.php @@ -10,12 +10,9 @@ class AllTests { public static function suite() { - $suite = new \PHPUnit_Framework_TestSuite('ErdikoTests'); $testFiles = AllTests::_getTestFi...
ER-<I> * Improved AllTests class
Erdiko_authorize
train
19ec2ef81424251ce73437b92dfe976c2372d67f
diff --git a/vstutils/api/filter_backends.py b/vstutils/api/filter_backends.py index <HASH>..<HASH> 100644 --- a/vstutils/api/filter_backends.py +++ b/vstutils/api/filter_backends.py @@ -4,8 +4,7 @@ from django.utils.encoding import force_str from django.db import models from rest_framework.filters import BaseFilterB...
Fix: show boolean filter as boolean in schema.
vstconsulting_vstutils
train
0c4854553b4615f63530e4e0763e93890d5e41ad
diff --git a/openfisca_core/scenarios.py b/openfisca_core/scenarios.py index <HASH>..<HASH> 100644 --- a/openfisca_core/scenarios.py +++ b/openfisca_core/scenarios.py @@ -185,7 +185,7 @@ class AbstractScenario(object): # All parallel axes have the same count and entity. first_a...
Minor fixes From a @cbenz commit erased my mistake
openfisca_openfisca-core
train
0d35ba9b94369c72e46ed7b57b2bb3427faf66a8
diff --git a/rafthttp/pipeline_test.go b/rafthttp/pipeline_test.go index <HASH>..<HASH> 100644 --- a/rafthttp/pipeline_test.go +++ b/rafthttp/pipeline_test.go @@ -67,9 +67,9 @@ func TestPipelineKeepSendingWhenPostError(t *testing.T) { } func TestPipelineExceedMaximumServing(t *testing.T) { - tr := newRoundTripperBl...
rafthttp: fix TestPipelineExceedMaximumServing The timeout is too short. It might take more than <I>ms to send request over a blocking chan (buffer is full). Changing the timeout to 1 second can fix this issue.
etcd-io_etcd
train
13e9d53fdfa599d05dfcd42298501212baeb6f98
diff --git a/xwiki-rendering-transformations/xwiki-rendering-transformation-linkchecker/src/main/java/org/xwiki/rendering/internal/transformation/linkchecker/DefaultHTTPChecker.java b/xwiki-rendering-transformations/xwiki-rendering-transformation-linkchecker/src/main/java/org/xwiki/rendering/internal/transformation/lin...
XRENDERING-<I>: Set a XWiki user-agent in the Link Checker to be a good citizen + improved performance by reusing the HttpClient object
xwiki_xwiki-rendering
train
a8479829b180c4da74027b220a629a794a894091
diff --git a/core/src/main/java/com/orientechnologies/orient/core/record/impl/OEdgeDelegate.java b/core/src/main/java/com/orientechnologies/orient/core/record/impl/OEdgeDelegate.java index <HASH>..<HASH> 100755 --- a/core/src/main/java/com/orientechnologies/orient/core/record/impl/OEdgeDelegate.java +++ b/core/src/main...
fix NPE on HTTP API with lightweight edges
orientechnologies_orientdb
train
6d770f8a864ec89509d696276da42936f1f92592
diff --git a/core/files/changelog.txt b/core/files/changelog.txt index <HASH>..<HASH> 100644 --- a/core/files/changelog.txt +++ b/core/files/changelog.txt @@ -1,4 +1,5 @@ 0.9 + EncodedDoubleValue requires maxValue/factor to be a natural number #954 default base algorithm for all modes is bidirectional A* (exce...
Fix encoded value issue #<I> (#<I>)
graphhopper_graphhopper
train
97cdc8f4738e7cdc3c2fd9edc7387579d36945ab
diff --git a/test/test_config.rb b/test/test_config.rb index <HASH>..<HASH> 100644 --- a/test/test_config.rb +++ b/test/test_config.rb @@ -69,6 +69,6 @@ class TestConfig < Test::Unit::TestCase def test_clears_config Sauce.config {|c|} - assert_not_equal [["Windows 2003", "firefox", "3.6."]], Sauce::Config....
Yea that was a weird test
saucelabs_sauce_ruby
train
53d2520320412eb66469efce8cfef18229dfe23d
diff --git a/container/lxd/container.go b/container/lxd/container.go index <HASH>..<HASH> 100644 --- a/container/lxd/container.go +++ b/container/lxd/container.go @@ -6,13 +6,13 @@ package lxd import ( "fmt" "math" - "strconv" "strings" "github.com/juju/errors" "github.com/juju/utils/arch" "github.com/lx...
Use the LXD version package to parse LXD version strings.
juju_juju
train
e7c37736e26be8fd0232050a67aa4b8cc06ca01a
diff --git a/lib/pdk/generators/module.rb b/lib/pdk/generators/module.rb index <HASH>..<HASH> 100644 --- a/lib/pdk/generators/module.rb +++ b/lib/pdk/generators/module.rb @@ -96,6 +96,9 @@ module PDK 'dependencies' => [ { 'name' => 'puppetlabs-stdlib', 'version_requirement' => '>= 4.13.1 < 5.0.0...
(PDK-<I>) Add puppet version requirements to metadata.json generation
puppetlabs_pdk
train
40e5b253a3cd1fa3bb6f79335af1f5c1e838af15
diff --git a/core/src/main/java/com/graphhopper/reader/OSMElement.java b/core/src/main/java/com/graphhopper/reader/OSMElement.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/graphhopper/reader/OSMElement.java +++ b/core/src/main/java/com/graphhopper/reader/OSMElement.java @@ -197,4 +197,10 @@ public abstr...
fixed #<I>, Graph build fail in rare situations with sac_scale due to BikeFlagEncoder bug
graphhopper_graphhopper
train
1f9223a7c2c0e5c04936c56a071830f8792c3dd7
diff --git a/commands.go b/commands.go index <HASH>..<HASH> 100644 --- a/commands.go +++ b/commands.go @@ -1762,10 +1762,11 @@ func parseRun(cmd *flag.FlagSet, args []string, capabilities *Capabilities) (*Co _ = cmd.Bool("sig-proxy", true, "Proxify all received signal to the process (even in non-tty mode)") _ = c...
Use a constant for PortSpecTemplate + display the template in the CmdRun help
containers_storage
train
84f8bb6be8c42a63f40567c7ebf71120e6329b0c
diff --git a/docs/source/conf.py b/docs/source/conf.py index <HASH>..<HASH> 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -223,3 +223,7 @@ htmlhelp_basename = 'Chalicedoc' primary_domain = 'py' linkcheck_retries = 5 +# The AWS Doc site now uses javascript to dynamically render the content, +# so the...
Disable anchor link checker This is failing our builds now. This is due to the AWS Doc site using javascript to render the content now so even though the anchor links are correct, you won't be able to see them in the static HTML.
aws_chalice
train
64b74aecfa950caf83e36ab3afbcd827a4fff955
diff --git a/lib/yard/cli/yardoc.rb b/lib/yard/cli/yardoc.rb index <HASH>..<HASH> 100644 --- a/lib/yard/cli/yardoc.rb +++ b/lib/yard/cli/yardoc.rb @@ -28,7 +28,10 @@ module YARD # @return [Boolean] whether to generate output attr_accessor :generate - + + # @return [Boolean] whether to p...
Add a --list option for listing all objects matching the query.
lsegal_yard
train
b6aa87d11685a9784f6f77cb11ecbc68ce7e6278
diff --git a/code/solr/SolrIndex.php b/code/solr/SolrIndex.php index <HASH>..<HASH> 100644 --- a/code/solr/SolrIndex.php +++ b/code/solr/SolrIndex.php @@ -268,9 +268,9 @@ abstract class SolrIndex extends SearchIndex { foreach ($res->response->docs as $doc) { $result = DataObject::get_by_id($doc->ClassName, $do...
Fix results aggregation in SolrIndex (ArrayAccess broken) Needs to use push() explicitly, native operators don't seem to work on ArrayList (see <URL>)
silverstripe_silverstripe-fulltextsearch
train
e8c77b00de470bfba8f34580a06321876b2f9974
diff --git a/cnxarchive/scripts/initializedb.py b/cnxarchive/scripts/initializedb.py index <HASH>..<HASH> 100644 --- a/cnxarchive/scripts/initializedb.py +++ b/cnxarchive/scripts/initializedb.py @@ -8,24 +8,21 @@ """Commandline script used to initialize the SQL database.""" import os import sys +import argparse i...
Use argparse, because other options need added.
openstax_cnx-archive
train
a8c28cae6b7f261398ec2b686a18f3292bf2eff7
diff --git a/tofu/tests/tests01_geom/tests03_core.py b/tofu/tests/tests01_geom/tests03_core.py index <HASH>..<HASH> 100644 --- a/tofu/tests/tests01_geom/tests03_core.py +++ b/tofu/tests/tests01_geom/tests03_core.py @@ -925,6 +925,26 @@ class Test03_Rays(object): # Just to check the loaded version works...
[Issue<I>] added unit test
ToFuProject_tofu
train
5f8de2e468b35228676d00d80692932bead4bc27
diff --git a/org.jenetics.prog/src/main/java/org/jenetics/prog/ops/MathOp.java b/org.jenetics.prog/src/main/java/org/jenetics/prog/ops/MathOp.java index <HASH>..<HASH> 100644 --- a/org.jenetics.prog/src/main/java/org/jenetics/prog/ops/MathOp.java +++ b/org.jenetics.prog/src/main/java/org/jenetics/prog/ops/MathOp.java @...
#<I>: Class cleanup.
jenetics_jenetics
train
3ca41f907a891e5b121d58cc07155848cf1bb369
diff --git a/tests/system/Helpers/FormHelperTest.php b/tests/system/Helpers/FormHelperTest.php index <HASH>..<HASH> 100644 --- a/tests/system/Helpers/FormHelperTest.php +++ b/tests/system/Helpers/FormHelperTest.php @@ -3,6 +3,7 @@ use CodeIgniter\HTTP\URI; use Config\App; use CodeIgniter\Services; +use Config\Filter...
+ added support for csrf fields
codeigniter4_CodeIgniter4
train
6b72bc9ffa8943d6ad5eee63064bc5fdfbddc9a1
diff --git a/src/Connection.php b/src/Connection.php index <HASH>..<HASH> 100644 --- a/src/Connection.php +++ b/src/Connection.php @@ -204,8 +204,7 @@ class Connection public function publish($subject, $payload) { $msg = 'PUB '.$subject.' '.strlen($payload); - $this->send($msg); - $this...
Fixed #<I> msg and payload should be send in one request.
repejota_phpnats
train
aaca5eac7dfb419f6fc6f756f030f13902d9abe1
diff --git a/modules/parser/ext.core.LinkHandler.js b/modules/parser/ext.core.LinkHandler.js index <HASH>..<HASH> 100644 --- a/modules/parser/ext.core.LinkHandler.js +++ b/modules/parser/ext.core.LinkHandler.js @@ -74,6 +74,7 @@ WikiLinkHandler.prototype._simpleImageOptions = { 'left': 'halign', 'right': 'halign', ...
More tweaks: safesubst and image options * Ignore safesubst for now * Remove an unneeded whitelist entry * Make sure the caption is not lost for thumbs (fix to last commit) and remove debug print Change-Id: I<I>ed<I>cf7c3b<I>fe9cdf<I>
wikimedia_parsoid
train
115db6721ca79dcabacba47867e3bbba1c78bdbd
diff --git a/SecureHeaders.php b/SecureHeaders.php index <HASH>..<HASH> 100644 --- a/SecureHeaders.php +++ b/SecureHeaders.php @@ -675,7 +675,7 @@ class SecureHeaders{ } } - if (preg_match_all('/(?:[ ]\Khttps?[:](?:\/\/)?[*]?|[ ]\K[*])(?=[ ;]|$)/', $val...
optimise regex and allow wildcard to start at begining of string with no space
aidantwoods_SecureHeaders
train
5e11e414208608b7e43372154493b3e0a184e580
diff --git a/actionpack/test/dispatch/request_test.rb b/actionpack/test/dispatch/request_test.rb index <HASH>..<HASH> 100644 --- a/actionpack/test/dispatch/request_test.rb +++ b/actionpack/test/dispatch/request_test.rb @@ -632,12 +632,14 @@ class RequestProtocol < BaseRequestTest end class RequestMethod < BaseReque...
Update test to clearly reflect what it is testing for.
rails_rails
train
e2ac1448514f824b1e37e730a5d597285d6bc2ed
diff --git a/Gemfile b/Gemfile index <HASH>..<HASH> 100644 --- a/Gemfile +++ b/Gemfile @@ -5,9 +5,6 @@ source "https://rubygems.org" # development dependencies will be added by default to the :development group. gemspec -# jquery-rails is used by the dummy application -gem "jquery-rails" - # Declare any dependenci...
removed jquery-rails from Gemfile
next-l_enju_leaf
train
e6570cadc4eee13b450810b26d24bb52944829d0
diff --git a/core/src/main/java/org/apache/druid/guice/LifecycleModule.java b/core/src/main/java/org/apache/druid/guice/LifecycleModule.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/apache/druid/guice/LifecycleModule.java +++ b/core/src/main/java/org/apache/druid/guice/LifecycleModule.java @@ -57,8 +57,...
Update LifecycleModule.java (#<I>) Update the javadoc on LifecycleModule to be more clear about why the register methods exist and why they should always be used instead of Guice's eager instantiation.
apache_incubator-druid
train
072de8ebff48db0ee3cab0f74a1d9f8d4373bbc5
diff --git a/rapidoid-u/src/main/java/org/rapidoid/util/U.java b/rapidoid-u/src/main/java/org/rapidoid/util/U.java index <HASH>..<HASH> 100644 --- a/rapidoid-u/src/main/java/org/rapidoid/util/U.java +++ b/rapidoid-u/src/main/java/org/rapidoid/util/U.java @@ -2235,4 +2235,21 @@ public class U { return CALENDAR.get(Ca...
Added utils that construct number from a provided string.
rapidoid_rapidoid
train
7e936877b32d8aa0932081b20b2f75270086ba6b
diff --git a/packages/service/src/serverless/util/configureEnvironment.js b/packages/service/src/serverless/util/configureEnvironment.js index <HASH>..<HASH> 100644 --- a/packages/service/src/serverless/util/configureEnvironment.js +++ b/packages/service/src/serverless/util/configureEnvironment.js @@ -3,7 +3,7 @@ impor...
fix(service): Just set `dynamoose.AWS` instead of `dynamoose.setDDB` for X-Ray support.
randytarampi_me
train
74645193241c4bdf0d82b25800fdc3bfb206261e
diff --git a/Bundle/TwigBundle/Controller/ExceptionController.php b/Bundle/TwigBundle/Controller/ExceptionController.php index <HASH>..<HASH> 100644 --- a/Bundle/TwigBundle/Controller/ExceptionController.php +++ b/Bundle/TwigBundle/Controller/ExceptionController.php @@ -3,7 +3,7 @@ namespace Victoire\Bundle\TwigBundle...
rollback FlattenException use because of parent class which still use FlattenException in <I>
Victoire_victoire
train
938dd757293a9b00ae5f9dc7343fc24456e33bfc
diff --git a/libkbfs/tlf_handle_resolve.go b/libkbfs/tlf_handle_resolve.go index <HASH>..<HASH> 100644 --- a/libkbfs/tlf_handle_resolve.go +++ b/libkbfs/tlf_handle_resolve.go @@ -627,19 +627,23 @@ func parseTlfHandleLoose( return nil, err } - // First try resolving this full name as an implicit team. If - // th...
tlf_handle: don't call resolve implicit teams for now It has bad performance.
keybase_client
train
7705d10d1bc8d43fb519fbaf02beff769cbca3ee
diff --git a/st_reg/states/ba.py b/st_reg/states/ba.py index <HASH>..<HASH> 100644 --- a/st_reg/states/ba.py +++ b/st_reg/states/ba.py @@ -18,8 +18,10 @@ def check(st_reg_number): sum_second_digit = sum_second_digit + i*int(st_reg_number[-i-1]) - second_digits_check = 10 - (sum_second_digit % 10) - + ...
Fix bug in validating the state registration of the Bahia
matheuscas_pyIE
train
7d0f0f7e11823765b00fb90818be5ae0bc0a8e10
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -79,14 +79,18 @@ module.exports = function(grunt) { } }; - // Determine which files we should package + /** + * Determine which components we should package. + * + * The --components= parameter can be...
Swapped concat and uglify grunt order
titon_toolkit
train
fb1644fa4db606154ebd9d51a341f6d71a704e8d
diff --git a/fastlane/lib/fastlane/actions/import_from_git.rb b/fastlane/lib/fastlane/actions/import_from_git.rb index <HASH>..<HASH> 100644 --- a/fastlane/lib/fastlane/actions/import_from_git.rb +++ b/fastlane/lib/fastlane/actions/import_from_git.rb @@ -26,6 +26,10 @@ module Fastlane ...
Import multiple files from git (#<I>)
fastlane_fastlane
train
6d2a0ab0dfcbdc90284848da30bdfee5d5286005
diff --git a/helper/communicator/config.go b/helper/communicator/config.go index <HASH>..<HASH> 100644 --- a/helper/communicator/config.go +++ b/helper/communicator/config.go @@ -13,6 +13,7 @@ import ( helperssh "github.com/hashicorp/packer/helper/ssh" "github.com/hashicorp/packer/template/interpolate" "github.co...
communicator/ssh: expand user path for private key
hashicorp_packer
train
c8f2e2be77bdd6fda2ae4123e3d2690d99a805d1
diff --git a/SlevomatCodingStandard/Sniffs/TypeHints/PropertyTypeHintSniff.php b/SlevomatCodingStandard/Sniffs/TypeHints/PropertyTypeHintSniff.php index <HASH>..<HASH> 100644 --- a/SlevomatCodingStandard/Sniffs/TypeHints/PropertyTypeHintSniff.php +++ b/SlevomatCodingStandard/Sniffs/TypeHints/PropertyTypeHintSniff.php @...
PropertyTypeHintSniff: Fixed false positive
slevomat_coding-standard
train
aa890bb857da004adde0d226945e3111b14c5e48
diff --git a/airflow/contrib/hooks/bigquery_hook.py b/airflow/contrib/hooks/bigquery_hook.py index <HASH>..<HASH> 100644 --- a/airflow/contrib/hooks/bigquery_hook.py +++ b/airflow/contrib/hooks/bigquery_hook.py @@ -495,6 +495,93 @@ class BigQueryBaseCursor(object): .execute() ) + def run_tabl...
Add two methods to bigquery hook's base cursor: run_table_upsert, which adds a table or updates an existing table; and run_grant_dataset_view_access, which grants view access to a given dataset for a given table.
apache_airflow
train
4bcc3719dae8d2a3540784b51630faab0e9c90e4
diff --git a/lib/riddle/query/select.rb b/lib/riddle/query/select.rb index <HASH>..<HASH> 100644 --- a/lib/riddle/query/select.rb +++ b/lib/riddle/query/select.rb @@ -66,7 +66,7 @@ class Riddle::Query::Select end sql << " #{limit_clause}" unless @limit.nil? && @offset.nil? sql << " #{options_clause}" u...
Handle boolean values for filters in SphinxQL queries.
pat_riddle
train
502944d054c2ad3d758b88b1a3c1816a3b3402d5
diff --git a/java/server/src/org/openqa/selenium/grid/security/RequiresSecretFilter.java b/java/server/src/org/openqa/selenium/grid/security/RequiresSecretFilter.java index <HASH>..<HASH> 100644 --- a/java/server/src/org/openqa/selenium/grid/security/RequiresSecretFilter.java +++ b/java/server/src/org/openqa/selenium/g...
[grid] RequiresSecretFilter now returns a regular webdriver response
SeleniumHQ_selenium
train
7b1502b93e365e22f0ed5a1f4ae191e5a8f15b83
diff --git a/_config.php b/_config.php index <HASH>..<HASH> 100644 --- a/_config.php +++ b/_config.php @@ -1,3 +1,3 @@ <?php -define('RESPONSIVE_IMAGES_DIR', basename(dirname(__FILE__))); +define('RESPONSIVE_IMAGES_DIR', dirname(__FILE__));
Removed basename call, to enable vendor path reference
heyday_silverstripe-responsive-images
train
ec30a2616ce6230e673ad0f3d0afdbd860d53971
diff --git a/src/main/java/gwt/material/design/client/ui/table/cell/Column.java b/src/main/java/gwt/material/design/client/ui/table/cell/Column.java index <HASH>..<HASH> 100644 --- a/src/main/java/gwt/material/design/client/ui/table/cell/Column.java +++ b/src/main/java/gwt/material/design/client/ui/table/cell/Column.ja...
BUG: DataTable default sort is not using the value to sort by correctly
GwtMaterialDesign_gwt-material-table
train
5acffb9fa30286912e7170caa6cc73ac8f15f344
diff --git a/dfply/transform.py b/dfply/transform.py index <HASH>..<HASH> 100644 --- a/dfply/transform.py +++ b/dfply/transform.py @@ -17,7 +17,7 @@ def transmute(df, *keep_columns, **kwargs): # ------------------------------------------------------------------------------ -# Series operation helper functions +# W...
commented out row_number (incorrect functionality compared to dplyr)
kieferk_dfply
train
547ada2e104dbe035a05c9ee2fb82582d2a1e916
diff --git a/spec/mongoid/contextual/atomic_spec.rb b/spec/mongoid/contextual/atomic_spec.rb index <HASH>..<HASH> 100644 --- a/spec/mongoid/contextual/atomic_spec.rb +++ b/spec/mongoid/contextual/atomic_spec.rb @@ -496,7 +496,7 @@ describe Mongoid::Contextual::Atomic do end end - describe "#push_each" do + ...
MONGOID-<I> Update spec after method name change
mongodb_mongoid
train
1f9f941b3502eb717ca04b213403b3f8c311ee60
diff --git a/scripts/emulator.js b/scripts/emulator.js index <HASH>..<HASH> 100644 --- a/scripts/emulator.js +++ b/scripts/emulator.js @@ -8,6 +8,9 @@ const inquirer = require('inquirer') const { execSync } = require('child_process') const emulators = execSync(`$ANDROID_HOME/emulator/emulator -list-avds`).toString(...
[Script][Emulator] Better Sdk management, cleaner code
Nozbe_WatermelonDB
train
3c26ff2003ef6a44ffd15ebb641d91405681db44
diff --git a/lib/amber/i18n.rb b/lib/amber/i18n.rb index <HASH>..<HASH> 100644 --- a/lib/amber/i18n.rb +++ b/lib/amber/i18n.rb @@ -1,4 +1,4 @@ - +# encoding: utf-8 require 'i18n' require 'i18n/backend/fallbacks' diff --git a/lib/amber/version.rb b/lib/amber/version.rb index <HASH>..<HASH> 100644 --- a/lib/amber/ver...
fix missing encoding in i<I>n.rb
leapcode_amber
train
1696bbc6ca60461a52dd8382929c2cd5be2803eb
diff --git a/test/extractFields.js b/test/extractFields.js index <HASH>..<HASH> 100644 --- a/test/extractFields.js +++ b/test/extractFields.js @@ -61,6 +61,10 @@ describe('extractFields', function () { 0: 'this Saturday', 1: 'next Saturday', '-1': 'last Saturday' + ...
Fix failing tests that expect less data to be present :)
papandreou_node-cldr
train
6afefddb4433bd85e31c4c6a16be3e20bae1bb93
diff --git a/src/Intervention/Image/Gd/Commands/LimitColorsCommand.php b/src/Intervention/Image/Gd/Commands/LimitColorsCommand.php index <HASH>..<HASH> 100644 --- a/src/Intervention/Image/Gd/Commands/LimitColorsCommand.php +++ b/src/Intervention/Image/Gd/Commands/LimitColorsCommand.php @@ -25,7 +25,7 @@ class LimitColo...
fixed issue when converting transparent images to non-transparent formats
Intervention_image
train
5d48f6c87ab58557a40e0b377826b21ab57dbfb5
diff --git a/lib/cri.rb b/lib/cri.rb index <HASH>..<HASH> 100644 --- a/lib/cri.rb +++ b/lib/cri.rb @@ -3,10 +3,10 @@ module Cri # The current Cri version. VERSION = '1.1' + autoload 'Base', 'cri/base' + autoload 'Command', 'cri/command' + autoload 'OptionParser', 'cri/option_parse...
switched to autoload for easiness
ddfreyne_cri
train
1d2788457fd84bff10e921f439927e9304f70842
diff --git a/linux_backend/linux_container.go b/linux_backend/linux_container.go index <HASH>..<HASH> 100644 --- a/linux_backend/linux_container.go +++ b/linux_backend/linux_container.go @@ -30,8 +30,7 @@ type LinuxContainer struct { graceTime time.Duration - state State - stateMutex sync.RWMutex + state Sta...
remove overly-defensive state transition mutex
cloudfoundry_garden
train
2654b74e0d6e2d5b8e1cc6a36f99b14481fe06d0
diff --git a/nats.go b/nats.go index <HASH>..<HASH> 100644 --- a/nats.go +++ b/nats.go @@ -2424,3 +2424,17 @@ func (nc *Conn) MaxPayload() int64 { defer nc.mu.Unlock() return nc.info.MaxPayload } + +// AuthRequired will return if the connected server requires authorization. +func (nc *Conn) AuthRequired() bool { +...
Added in checks for auth and tls requirements
nats-io_go-nats
train
be52eaf3ef4c984116b610d5f6b7fffa0dd4d091
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 @@ -1310,29 +1310,29 @@ class Bundle(ParameterSet): for component in self.hierarchy.get_stars(): # first check ld_coeffs_bol vs ld_func_b...
make sure to cast ld_func and ld_coeffs so libphoebe doesn't complain
phoebe-project_phoebe2
train
92731c521d5d242e3a1d2350ea3dd71db1d989a4
diff --git a/src/ossos-pipeline/pymop/pymop/io/workload.py b/src/ossos-pipeline/pymop/pymop/io/workload.py index <HASH>..<HASH> 100644 --- a/src/ossos-pipeline/pymop/pymop/io/workload.py +++ b/src/ossos-pipeline/pymop/pymop/io/workload.py @@ -52,7 +52,7 @@ class WorkUnit(object): return self.work_items -cl...
Renamed WorkUnitFactory to WorkUnitProvider and renamed create_workunit to get_workunit.
OSSOS_MOP
train
0be8ec1893d39c27a01259cbb832a1a693f5831b
diff --git a/eeweather/mappings.py b/eeweather/mappings.py index <HASH>..<HASH> 100644 --- a/eeweather/mappings.py +++ b/eeweather/mappings.py @@ -165,7 +165,12 @@ class ISDStationMapping(MappingResult): target_longitude, target_latitude, self.isd_station.longitude, self.isd_station.la...
added additional warning for <I>km distance matching to go along with CalTrack warning
openeemeter_eeweather
train
a8eeee135e84b77287ea5ce62b153badccf91ec4
diff --git a/addon-mirage-support/get-all.js b/addon-mirage-support/get-all.js index <HASH>..<HASH> 100644 --- a/addon-mirage-support/get-all.js +++ b/addon-mirage-support/get-all.js @@ -5,7 +5,10 @@ import { Collection, Model } from 'ember-cli-mirage'; const getAll = function (schema, request) { //turn /api/progra...
kludges in a solution for retrieving all PCRS
ilios_common
train
f8de8032e5de7a574d8fc7a9f2487d0f1a94da45
diff --git a/src/Service/Provider.php b/src/Service/Provider.php index <HASH>..<HASH> 100644 --- a/src/Service/Provider.php +++ b/src/Service/Provider.php @@ -39,7 +39,9 @@ class Provider implements \Pimple\ServiceProviderInterface // Define view class loader $container["loadView.service"] = $containe...
replace forward slashes with backward slashes in view class name
SlaxWeb_View
train
7408a281073dc073356992dc370918397689a1b1
diff --git a/src/ORM/FieldType/MultiValueField.php b/src/ORM/FieldType/MultiValueField.php index <HASH>..<HASH> 100755 --- a/src/ORM/FieldType/MultiValueField.php +++ b/src/ORM/FieldType/MultiValueField.php @@ -167,12 +167,12 @@ class MultiValueField extends DBComposite return ''; } - public func...
Update MultiValueField.php
symbiote_silverstripe-multivaluefield
train
a8277204a2a92508c07c21e7d744ab2ce973e238
diff --git a/salt/modules/x509.py b/salt/modules/x509.py index <HASH>..<HASH> 100644 --- a/salt/modules/x509.py +++ b/salt/modules/x509.py @@ -1129,7 +1129,7 @@ def create_certificate(path=None, text=False, ca_server=None, **kwargs): cert.set_issuer(signing_cert.get_subject()) for extname, extlongname in EX...
bad logic in checking for x<I> extensions
saltstack_salt
train
dcd9984d253707fe9899e6361e0676ce4de0d0a7
diff --git a/source/application/views/admin/de/lang.php b/source/application/views/admin/de/lang.php index <HASH>..<HASH> 100755 --- a/source/application/views/admin/de/lang.php +++ b/source/application/views/admin/de/lang.php @@ -1984,8 +1984,7 @@ $aLang = array( 'PAYMENT_RDFA_VISA' ...
fixed #<I>, removed DELIVERY_RDFA_ADVICE_END, introduced %s
OXID-eSales_oxideshop_ce
train
125a3667f912eb47521e8953e89a1f8db9cd7212
diff --git a/helpers/TbHtml.php b/helpers/TbHtml.php index <HASH>..<HASH> 100755 --- a/helpers/TbHtml.php +++ b/helpers/TbHtml.php @@ -1349,8 +1349,7 @@ EOD; } if (in_array($type, array(self::INPUT_TYPE_CHECKBOX, self::INPUT_TYPE_RADIOBUTTON))) { - $htmlOptions['label'] = $label; - ...
Fix selecting checkboxes by clicking on the label
crisu83_yiistrap
train
5430487d85de3e6ac0d886e384ef039f15e64a88
diff --git a/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb b/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb index <HASH>..<HASH> 100644 --- a/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb +++ b/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb @@ -5...
Stylistic improvements. Some light documentation for remove_xpaths.
rails_rails
train
22baa19c513ec77b65e511f4a75a9e0f7dca057c
diff --git a/pymatgen/analysis/surface_analysis.py b/pymatgen/analysis/surface_analysis.py index <HASH>..<HASH> 100644 --- a/pymatgen/analysis/surface_analysis.py +++ b/pymatgen/analysis/surface_analysis.py @@ -1363,7 +1363,7 @@ class WorkFunctionAnalyzer: The average locpot of the slab region along the c dire...
better default bondlength for finding sites in get_slab_region
materialsproject_pymatgen
train
151e0ba0ce743081a276886b2dc94f54f03e4a8b
diff --git a/bench/serializing.rb b/bench/serializing.rb index <HASH>..<HASH> 100644 --- a/bench/serializing.rb +++ b/bench/serializing.rb @@ -10,7 +10,7 @@ module Models end end - class ClassRoom + class ClassRoom attr_reader :students attr_accessor :teacher def initialize(opts = {}) @@ -51...
Clean up code to satisfy RuboCop
ruby-grape_grape-entity
train
7492a8dcab06d10f338c6a9df4dac697d58efecb
diff --git a/src/Collection.php b/src/Collection.php index <HASH>..<HASH> 100644 --- a/src/Collection.php +++ b/src/Collection.php @@ -39,6 +39,68 @@ class Collection return empty($this->_data); } + /** + * Get a value of an entry in the collection + * Useful to get deep array elements withou...
Improved the magic collection object to include a deep string base lookup function
ptejada_uFlex
train
219836a6d85503ee72c5ab8d47e5b475b25b130a
diff --git a/ocelot-web/src/main/java/fr/hhdev/ocelot/core/CacheManager.java b/ocelot-web/src/main/java/fr/hhdev/ocelot/core/CacheManager.java index <HASH>..<HASH> 100644 --- a/ocelot-web/src/main/java/fr/hhdev/ocelot/core/CacheManager.java +++ b/ocelot-web/src/main/java/fr/hhdev/ocelot/core/CacheManager.java @@ -51,19...
Add store notion. Store NONE, BROWSER, SESSION if cache deadline is not define by annotation so cache deadline 1 year
ocelotds_ocelot
train
79d3033b6064176081233fe4f753469a5f4ff2bd
diff --git a/spec/amq/protocol/exchange_spec.rb b/spec/amq/protocol/exchange_spec.rb index <HASH>..<HASH> 100644 --- a/spec/amq/protocol/exchange_spec.rb +++ b/spec/amq/protocol/exchange_spec.rb @@ -9,20 +9,18 @@ module AMQ describe Declare do describe '.encode' do it 'encodes the parameters ...
Fixed a test It wasn't the encoding that caused the problem, but a trailing comma...
ruby-amqp_amq-protocol
train
fad002c11ee3b6f106c4a2c47652cbad1dac1e59
diff --git a/internal/pkg/gateway/api.go b/internal/pkg/gateway/api.go index <HASH>..<HASH> 100644 --- a/internal/pkg/gateway/api.go +++ b/internal/pkg/gateway/api.go @@ -101,17 +101,15 @@ func (gs *Server) Endorse(ctx context.Context, request *gp.EndorseRequest) (*gp. go func(e *endorser) { defer wg.Done() ...
Gateway error logic refactor Implements the suggested improvement as per previous review comment: <URL>
hyperledger_fabric
train