hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
150ec5b41a9ba52327642cd04b379646bf881168
diff --git a/publ/image.py b/publ/image.py index <HASH>..<HASH> 100644 --- a/publ/image.py +++ b/publ/image.py @@ -815,7 +815,8 @@ def _fix_orientation(image): def _get_asset(file_path): """ Get the database record for an asset file """ record = model.Image.get(file_path=file_path) - fingerprint = utils.f...
Properly expire file fingerprints as well as checksums
PlaidWeb_Publ
train
95bbc1a572c11c16ce7aa7629e2158362ca8416a
diff --git a/src/DM/AjaxCom/Resources/public/js/ajaxcom.js b/src/DM/AjaxCom/Resources/public/js/ajaxcom.js index <HASH>..<HASH> 100755 --- a/src/DM/AjaxCom/Resources/public/js/ajaxcom.js +++ b/src/DM/AjaxCom/Resources/public/js/ajaxcom.js @@ -56,6 +56,7 @@ } xhr.setRe...
hack-fix chrome bug of displaying ajax JSON on back
everlutionsk_AjaxCom
train
0cab3f4f60925892ec242169617331a8feec6290
diff --git a/tests.py b/tests.py index <HASH>..<HASH> 100644 --- a/tests.py +++ b/tests.py @@ -165,6 +165,39 @@ class IndexesTestCase(RelationshipsTestCase): index["surnames"]["d"] = n1 self.failUnless(n1 in index["surnames"]["d"]) + def test_create_index_for_relationships(self): + n1 = se...
Added tests in order to query indexes
versae_neo4j-rest-client
train
796d1c2695af51df03b87e9654dd11679c7cd687
diff --git a/presto-main/src/main/java/com/facebook/presto/execution/executor/PrioritizedSplitRunner.java b/presto-main/src/main/java/com/facebook/presto/execution/executor/PrioritizedSplitRunner.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/execution/executor/PrioritizedSplitRunn...
Replace CpuTimer to avoid sampling user time CpuTimer will sample wall time, cpu time, and user time. The latter is relatively expensive on Linux since it requires parsing files in /proc. In an internal run, Presto spent around 5% of its total cpu time fetching this metric that is immediately discarded. This diff fe...
prestodb_presto
train
b1982e8cf3f944a76fbcf00bac99857b8cf71e2a
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -37,10 +37,12 @@ PromiseMock.run = function run(count) { /** * Execute all pending Promises + * + * @param strict boolean Throw error if none waiting */ -PromiseMock.runAll = function runAll() { - if (P...
Add strict false param to runAll
taylorhakes_promise-mock
train
a129878b5ce8c0a9de0a63c5f10f5191730339f5
diff --git a/aeron-system-tests/src/test/java/io/aeron/cluster/ClusterNetworkTopologyTest.java b/aeron-system-tests/src/test/java/io/aeron/cluster/ClusterNetworkTopologyTest.java index <HASH>..<HASH> 100644 --- a/aeron-system-tests/src/test/java/io/aeron/cluster/ClusterNetworkTopologyTest.java +++ b/aeron-system-tests/...
[Java] Remove deliberate failure.
real-logic_aeron
train
ffa50baa1a81fbf6a1c5fa95a8b18de5cefcd2c0
diff --git a/concrete/blocks/survey/view.php b/concrete/blocks/survey/view.php index <HASH>..<HASH> 100644 --- a/concrete/blocks/survey/view.php +++ b/concrete/blocks/survey/view.php @@ -33,6 +33,7 @@ $optionResults = array(); $graphColors = array(); $i = 1; $totalVotes = 0; +$optionNamesAbbrev = []; foreach ($opti...
Fix counting non countable in Survey block view
concrete5_concrete5
train
22403f9a039ff6ab81250f7ab73592f10ae16562
diff --git a/analytical/tests/test_tag_uservoice.py b/analytical/tests/test_tag_uservoice.py index <HASH>..<HASH> 100644 --- a/analytical/tests/test_tag_uservoice.py +++ b/analytical/tests/test_tag_uservoice.py @@ -40,14 +40,7 @@ class UserVoiceTagTestCase(TagTestCase): @override_settings(USERVOICE_WIDGET_KEY=''...
Fix uservoice tests Rewrite test_empty_key in the same way as in the other modules. Delete test_overridden_empty_key, because the Node (In this case, the UserVoiceNode) should not be created if there is no configuration initially.
jazzband_django-analytical
train
bd93ec3bf2f9e0779bf8ecea0141764a88666916
diff --git a/beautify.js b/beautify.js index <HASH>..<HASH> 100644 --- a/beautify.js +++ b/beautify.js @@ -270,6 +270,8 @@ function js_beautify(js_source_text, options) { } else { if (c === '\t') { whitespace_count += 4; + } else if (c ==...
Possibly fix multiplying newline bug (\r)
beautify-web_js-beautify
train
1d7d4714c083e5314b0787581cf52c6c0c122455
diff --git a/views/site/nav/tree.php b/views/site/nav/tree.php index <HASH>..<HASH> 100644 --- a/views/site/nav/tree.php +++ b/views/site/nav/tree.php @@ -14,7 +14,7 @@ * */ ?> -<div id="side-nav" class="block"> +<div id="nav" class="block"> <ul> <? $level = 1;
Fixed leftnav for thisishoop3
boomcms_boom-core
train
1d616ae39a2ee840ce99e149fbe1a590ad902d85
diff --git a/src/test/java/net/entropysoft/transmorph/injectors/BeanToBeanInjectorTest.java b/src/test/java/net/entropysoft/transmorph/injectors/BeanToBeanInjectorTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/net/entropysoft/transmorph/injectors/BeanToBeanInjectorTest.java +++ b/src/test/java/net/entropysof...
corrected BeanToBeanInjectorTest
cchabanois_transmorph
train
fc618de4ceee50ce926616e49c65469d0cc9a721
diff --git a/lib/base/context/index.js b/lib/base/context/index.js index <HASH>..<HASH> 100644 --- a/lib/base/context/index.js +++ b/lib/base/context/index.js @@ -64,9 +64,10 @@ exports.$resolveContextSet = function( val, event, context ) { var pathLength = path.length var pathLengthCompare = pathLength - 1 - ...
$lastStamp is ignored in isRemoved, added temp gaurd for event in resolve context
vigour-io_vjs
train
9e0feb4381f889af25191acdd88750d8327c4103
diff --git a/xbox-live.js b/xbox-live.js index <HASH>..<HASH> 100644 --- a/xbox-live.js +++ b/xbox-live.js @@ -50,10 +50,15 @@ XBoxLive.prototype.fetch = function(type, gamertag, game, callback){ }; if (this.options && this.options.request) req = _.extend(req, this.options.request); request(req, function...
Added callback for failed reuest
khrome_xbox-live
train
ef649fa498db9245e11d2400b267e331b73ea569
diff --git a/bench.rb b/bench.rb index <HASH>..<HASH> 100644 --- a/bench.rb +++ b/bench.rb @@ -72,6 +72,10 @@ Benchmark.bmbm do |x| N.times {transaction {Journalist.create :name => Faker::Name.name}} end + x.report 'insert (in-table-slug; included FinderMethods)' do + N.times {transaction {Restaurant.crea...
Use included Finders when possible to improve performance
norman_friendly_id
train
c8fd81c27821576f339ccf4fd85c47375ba34042
diff --git a/pkg/libcontainer/nsinit/exec.go b/pkg/libcontainer/nsinit/exec.go index <HASH>..<HASH> 100644 --- a/pkg/libcontainer/nsinit/exec.go +++ b/pkg/libcontainer/nsinit/exec.go @@ -19,7 +19,7 @@ import ( // Exec performes setup outside of a namespace so that a container can be // executed. Exec is a high lev...
Pass pipes into Exec function Docker-DCO-<I>-
containers_storage
train
a49cf53c1d5132bf7456075cbf3294e3f8c6ff56
diff --git a/coconut/logging.py b/coconut/logging.py index <HASH>..<HASH> 100644 --- a/coconut/logging.py +++ b/coconut/logging.py @@ -187,12 +187,13 @@ class Logger(object): def patch_logging(self): """Patches built-in Python logging.""" - def getLogger(name=None): - other = Logger(se...
Only patches logging when getLogger can't be found
evhub_coconut
train
86ef9d4b3a4423bd33acc3a6985342d839016308
diff --git a/src/extensions/default/WebPlatformDocs/InlineDocsViewer.js b/src/extensions/default/WebPlatformDocs/InlineDocsViewer.js index <HASH>..<HASH> 100644 --- a/src/extensions/default/WebPlatformDocs/InlineDocsViewer.js +++ b/src/extensions/default/WebPlatformDocs/InlineDocsViewer.js @@ -84,8 +84,9 @@ define(func...
handle scrolling for any element in viewer
adobe_brackets
train
fde8d763d9418abe226de52164b557399544eda8
diff --git a/src/main/java/org/cactoos/iterator/Synced.java b/src/main/java/org/cactoos/iterator/Synced.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/cactoos/iterator/Synced.java +++ b/src/main/java/org/cactoos/iterator/Synced.java @@ -46,7 +46,7 @@ public final class Synced<T> implements Iterator<T> { ...
(#<I>) Covariance for Synced
yegor256_cactoos
train
880ccea0220509bfaf483a50beefc128299a5b03
diff --git a/pkg_resources/tests/test_resources.py b/pkg_resources/tests/test_resources.py index <HASH>..<HASH> 100644 --- a/pkg_resources/tests/test_resources.py +++ b/pkg_resources/tests/test_resources.py @@ -205,6 +205,22 @@ class TestDistro: d.requires(["foo"]) +class TestWorkingSet: + def test_...
Add test for WorkingSet.find() when a conflict occurs.
pypa_setuptools
train
7214960393d28556e8336bc4a9cbb8547f7d1560
diff --git a/openquake/server/urls.py b/openquake/server/urls.py index <HASH>..<HASH> 100644 --- a/openquake/server/urls.py +++ b/openquake/server/urls.py @@ -18,11 +18,11 @@ from django.conf import settings from django.conf.urls import patterns, url, include - +from django.views.generic.base import RedirectView ...
webui: if no path is requested, go to /engine Former-commit-id: <I>b2b<I>f3f<I>a5c<I>ec1fd<I>ea<I>c<I>
gem_oq-engine
train
c19a369a5a786ad794b778d81f5800ebc63f2910
diff --git a/tests/org.eclipse.xtext.common.types.tests/tests/org/eclipse/xtext/common/types/xtext/ui/ContentAssistTest.java b/tests/org.eclipse.xtext.common.types.tests/tests/org/eclipse/xtext/common/types/xtext/ui/ContentAssistTest.java index <HASH>..<HASH> 100644 --- a/tests/org.eclipse.xtext.common.types.tests/test...
[tests] Fixed failing test with Java7 on server or Java6 locally
eclipse_xtext-extras
train
fd09d934d450fd18fa5607284ee06fe430e2919a
diff --git a/app/templates/src/main/java/package/config/_WebConfigurer.java b/app/templates/src/main/java/package/config/_WebConfigurer.java index <HASH>..<HASH> 100644 --- a/app/templates/src/main/java/package/config/_WebConfigurer.java +++ b/app/templates/src/main/java/package/config/_WebConfigurer.java @@ -89,7 +89,...
Sticky sessions should be true by default
jhipster_generator-jhipster
train
4865a01bfcce507683a24cacf64ce95e00ef2017
diff --git a/tests/tokenizer/test_tokenizer__tokenizer.py b/tests/tokenizer/test_tokenizer__tokenizer.py index <HASH>..<HASH> 100644 --- a/tests/tokenizer/test_tokenizer__tokenizer.py +++ b/tests/tokenizer/test_tokenizer__tokenizer.py @@ -111,9 +111,7 @@ class TokenizerTestCases(unittest.TestCase): self.assert...
relaxed precision in test for Windows/Mac
chrislit_abydos
train
bdfd2253755501e1e18527f97ab9b3ca5cf4b7a7
diff --git a/luigi/contrib/ftp.py b/luigi/contrib/ftp.py index <HASH>..<HASH> 100644 --- a/luigi/contrib/ftp.py +++ b/luigi/contrib/ftp.py @@ -127,10 +127,14 @@ class RemoteFileSystem(luigi.target.FileSystem): return exists def _ftp_exists(self, path, mtime): + path_parts = path.split('/') + ...
Fixed _ftp_exists(...) method. Previously called nlst(path) on full path including filename and extention. This only worked if the file existed.
spotify_luigi
train
0335c092866d68afe5038fa98477443512660eeb
diff --git a/lib/ipaddr.js b/lib/ipaddr.js index <HASH>..<HASH> 100644 --- a/lib/ipaddr.js +++ b/lib/ipaddr.js @@ -545,7 +545,12 @@ // RFC6052, RFC6146 teredo: [new IPv6([0x2001, 0, 0, 0, 0, 0, 0, 0]), 32], // RFC4291 - reserved: [[new IPv6([0x2001, 0xdb8, 0, 0, 0, 0, 0...
Add IANA reserved IPv6 addresses of <I> space
whitequark_ipaddr.js
train
8a22a734459c5960ac372417a2005dc2d56a87c2
diff --git a/src/program/types/ForStatement.js b/src/program/types/ForStatement.js index <HASH>..<HASH> 100644 --- a/src/program/types/ForStatement.js +++ b/src/program/types/ForStatement.js @@ -15,7 +15,7 @@ export default class ForStatement extends LoopStatement { let replacement = '('; [ this.init, this.test...
always include test in for loop head (fixes #<I>)
Rich-Harris_butternut
train
a6db996b87a5a0605ee6f4f789a153827108a01d
diff --git a/src/CallFire/Api/Rest/Client/Broadcast.php b/src/CallFire/Api/Rest/Client/Broadcast.php index <HASH>..<HASH> 100644 --- a/src/CallFire/Api/Rest/Client/Broadcast.php +++ b/src/CallFire/Api/Rest/Client/Broadcast.php @@ -245,13 +245,12 @@ class Broadcast extends AbstractClient * ControlContactBatch to e...
Hotfix for CreateContactBatch.
CallFire_CallFire-PHP-SDK
train
eb372b27d820fb6a9bebed08617fae331d38e1e1
diff --git a/tests/unit/daemons_test.py b/tests/unit/daemons_test.py index <HASH>..<HASH> 100644 --- a/tests/unit/daemons_test.py +++ b/tests/unit/daemons_test.py @@ -227,7 +227,7 @@ class DaemonsStarterTestCase(TestCase, integration.SaltClientTestCaseMixIn): for alg in ['sha224', 'sha256', 'sha384...
Add missing "not" statement: The last syndic test should assertFalse()
saltstack_salt
train
d699d05f1ad9c46a6b313d29afc00fc460ca6d48
diff --git a/tests/scripts/fuzzer.coffee b/tests/scripts/fuzzer.coffee index <HASH>..<HASH> 100644 --- a/tests/scripts/fuzzer.coffee +++ b/tests/scripts/fuzzer.coffee @@ -32,7 +32,7 @@ $(document).ready( -> else throw "Receive op that is not insert or retain: #{JSON.stringify(op)}" ) - w...
Initialize scribe with text instead of the empty doc; updated append test.
quilljs_quill
train
48cb0660d6bd57011d41fb80019ce735c8434b50
diff --git a/cmd/juju/status.go b/cmd/juju/status.go index <HASH>..<HASH> 100644 --- a/cmd/juju/status.go +++ b/cmd/juju/status.go @@ -226,17 +226,12 @@ func processUnit(unit *state.Unit) (map[string]interface{}, error) { type versioned interface { AgentTools() (*state.Tools, error) - ProposedAgentTools() (*state....
cmd/juju: remove proposed tools from status
juju_juju
train
c6c5b12592700bf81d98c716c59eb019678a575c
diff --git a/lib/discordrb/bot.rb b/lib/discordrb/bot.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/bot.rb +++ b/lib/discordrb/bot.rb @@ -442,7 +442,7 @@ module Discordrb # Return nil if no role is found nil elsif /<:(\w+):(?<id>\d+)>?/ =~ mention - emoji.find { |element| element.id...
Bot#parse_mention (emoji) can be shortened down since Bot#emoji already does the finding for us, given an id
meew0_discordrb
train
24c59dd8e0385723ce2144d0488a891128c4efbd
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -5,6 +5,12 @@ export default function createIpc (events = {}) { throw new TypeError(`createIpc expects an events object as its first parameter, you passed type "${typeof events}"`); } + Objec...
(feature) Add validation for event keys being functions to dispatch
mariotacke_redux-electron-ipc
train
6d1d00a623c66aa6c1d494075002ea32a3df42a8
diff --git a/galpy/potential_src/Potential.py b/galpy/potential_src/Potential.py index <HASH>..<HASH> 100644 --- a/galpy/potential_src/Potential.py +++ b/galpy/potential_src/Potential.py @@ -150,6 +150,64 @@ class Potential(object): raise units.UnitConversionError('amp= parameter of %s should h...
automatically turn physical output on when amplitude is given as quantity; functions to turn physical output on or off
jobovy_galpy
train
75de5fb225d779da217e22320f051cd9a11b3ba6
diff --git a/ah_bootstrap.py b/ah_bootstrap.py index <HASH>..<HASH> 100644 --- a/ah_bootstrap.py +++ b/ah_bootstrap.py @@ -91,6 +91,17 @@ except: use_setuptools() +# typing as a dependency for 1.6.1+ Sphinx causes issues when imported after +# initializing submodule with ah_boostrap.py +# See discussion and re...
Importing typing to avoid issues later
astropy_astropy-helpers
train
6df87a03837e8c73ed6d7fdbba5048aad037a1fb
diff --git a/internal/uidriver/glfw/ui.go b/internal/uidriver/glfw/ui.go index <HASH>..<HASH> 100644 --- a/internal/uidriver/glfw/ui.go +++ b/internal/uidriver/glfw/ui.go @@ -631,6 +631,7 @@ func (u *UserInterface) SetCursorShape(shape driver.CursorShape) { func (u *UserInterface) DeviceScaleFactor() float64 { if ...
internal/uidriver: Add comments Updates #<I>
hajimehoshi_ebiten
train
b5ac6647dce212b687533bd7dccdf17d207a2a4b
diff --git a/src/WordPressTrait.php b/src/WordPressTrait.php index <HASH>..<HASH> 100644 --- a/src/WordPressTrait.php +++ b/src/WordPressTrait.php @@ -327,7 +327,8 @@ trait WordPressTrait ->arg('option') ->arg('update') ->arg('sidebars_widgets') - ->arg('a:0:{}') + ...
Fix wp cli option serialized twice
globalis-ms_wp-cubi-robo
train
f50b462c9856d649b6925c8e717fc312096ac193
diff --git a/symbols/number.py b/symbols/number.py index <HASH>..<HASH> 100644 --- a/symbols/number.py +++ b/symbols/number.py @@ -24,6 +24,10 @@ class SymbolNUMBER(Symbol): def __init__(self, value, lineno, type_=None): assert lineno is not None assert type_ is None or isinstance(type_, SymbolTY...
Add div and mul operators to SymbolNUMBER Also allows a SymbolNUMBER to be instantiated from another one.
boriel_zxbasic
train
2561c8e252dcf66890513458750bb1329a03beec
diff --git a/lib/puppet/type/augeas.rb b/lib/puppet/type/augeas.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/type/augeas.rb +++ b/lib/puppet/type/augeas.rb @@ -92,10 +92,12 @@ Puppet::Type.newtype(:augeas) do rm [PATH] Removes the node at location PATH remove [PATH] Synony...
Updated Augeas type code
puppetlabs_puppet
train
4eb9fa5182b372981e0bc6522925250a3bb1f925
diff --git a/widget/DygraphsWidget.php b/widget/DygraphsWidget.php index <HASH>..<HASH> 100644 --- a/widget/DygraphsWidget.php +++ b/widget/DygraphsWidget.php @@ -201,6 +201,6 @@ class DygraphsWidget extends Widget $row[0] = new JsExpression("new Date('$row[0]')"); } } - ...
use numeric check because strings cannot be graphed
Sibilino_yii2-dygraphswidget
train
8a27648d74d0a2e639ec86b8788caab3fffbf1d0
diff --git a/postgresql.go b/postgresql.go index <HASH>..<HASH> 100644 --- a/postgresql.go +++ b/postgresql.go @@ -75,7 +75,7 @@ func (p *postgresql) SelectMany(s store, models *Model, query Query) error { func (p *postgresql) CreateDB() error { // createdb -h db -p 5432 -U postgres enterprise_development deets :=...
Database creation Hello Mark, I encountered an issue when i ran `buffalo db create -a` . It displayed the normal message for successful creation of database, but running the application could not create transaction. After checking, I found out non of the database was not created. Using the create database comman...
gobuffalo_pop
train
a808b799fb9876a1575c308ac7672a5c7014ef82
diff --git a/lib/decorator.js b/lib/decorator.js index <HASH>..<HASH> 100644 --- a/lib/decorator.js +++ b/lib/decorator.js @@ -5,6 +5,7 @@ var filter = require('core-js/library/fn/array/filter'); var map = require('core-js/library/fn/array/map'); var signature = require('call-signature'); var decorate = require('./d...
expose the entire messageSpec in the event object
twada_empower-core
train
8dc0b2ab9b04771bfeef29f02e52371ff8f16db6
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100644 --- a/lib/config.js +++ b/lib/config.js @@ -68,7 +68,8 @@ const DEFAULT_CONFIG = { theme: '' }, network: { - concurrency: 10 + concurrency: 10, + delay: 1 }, plugins: {} }; diff --git a/lib/plugins/leetcode.js b/lib/...
refs #<I>: customized delay before next try
skygragon_leetcode-cli
train
6b39f868c82a0763d6a2eb0e67a0b8caf5d1bcaf
diff --git a/.rubocop.yml b/.rubocop.yml index <HASH>..<HASH> 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -13,8 +13,6 @@ Documentation: FileName: Exclude: - gemfiles/* -HandleExceptions: - Enabled: false MultilineOperationIndentation: Enabled: false PercentLiteralDelimiters: diff --git a/lib/active_int...
Enable Lint/HandleExceptions and fix offenses
AaronLasseigne_active_interaction
train
53534135ffd7ea8f6967777089439841f8db132f
diff --git a/pkg/datapath/linux/ethtool/ethtool.go b/pkg/datapath/linux/ethtool/ethtool.go index <HASH>..<HASH> 100644 --- a/pkg/datapath/linux/ethtool/ethtool.go +++ b/pkg/datapath/linux/ethtool/ethtool.go @@ -28,10 +28,6 @@ const ( IFNAMSIZ = 16 ) -const ( - veth = "veth" -) - type ifreq struct { name [IFNAMS...
datapath/linux/ethtool: fix IsVirtualDriver for non-veth interfaces Currently, IsVirtualDriver always returns true, nil even if the interface isn't backed by the veth driver. This might lead to interfaces being classified as virtual even though they aren't. Fixes: 2c<I>a<I>de9 ("cilium: auto-detect network interfaces...
cilium_cilium
train
f34a60f2186cd354edd8a6015107752f3fe42970
diff --git a/marklogic-client-api-functionaltests/src/test/java/com/marklogic/client/datamovement/functionaltests/StringQueryHostBatcherTest.java b/marklogic-client-api-functionaltests/src/test/java/com/marklogic/client/datamovement/functionaltests/StringQueryHostBatcherTest.java index <HASH>..<HASH> 100644 --- a/markl...
Comment out withThreadCount(1) in qa functional tests
marklogic_java-client-api
train
2d1f1da87459362b2a249284dcd8312799231dfc
diff --git a/examples/create-react-app/src/App.js b/examples/create-react-app/src/App.js index <HASH>..<HASH> 100644 --- a/examples/create-react-app/src/App.js +++ b/examples/create-react-app/src/App.js @@ -1,5 +1,6 @@ -import Button from '@pluralsight/ps-button/react' +import Button from '@pluralsight/ps-design-system...
refactor(button): fix missed package rename
pluralsight_design-system
train
b73103da7aa85ddb973151bf2971edae362026b5
diff --git a/spyder/plugins/tests/test_ipythonconsole.py b/spyder/plugins/tests/test_ipythonconsole.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/tests/test_ipythonconsole.py +++ b/spyder/plugins/tests/test_ipythonconsole.py @@ -151,6 +151,9 @@ def test_tab_rename_for_slaves(ipyconsole, qtbot): @pytest.mark.skip...
Testing: Wait until the console is up for several console tests
spyder-ide_spyder
train
318323b771691ecd0f3d0664b3e82896f7153a9f
diff --git a/tests/IntegrationTest.php b/tests/IntegrationTest.php index <HASH>..<HASH> 100644 --- a/tests/IntegrationTest.php +++ b/tests/IntegrationTest.php @@ -311,29 +311,21 @@ class IntegrationTest extends TestCase public function testForcedSoftDeletesMixedRelatedRecords() { - try { - ...
Update test to work without having to skip it.
shiftonelabs_laravel-cascade-deletes
train
814bdae2d4da4ede9015052823581f747cb685ed
diff --git a/config/module.config.php b/config/module.config.php index <HASH>..<HASH> 100644 --- a/config/module.config.php +++ b/config/module.config.php @@ -990,7 +990,6 @@ return array( ) ) ), - 'quiz'...
it's no possible to create custom pages for the platform
gregorybesson_PlaygroundGame
train
d52935519e8f1b515870f838cc0ef3b36f34eb37
diff --git a/src/Traits/PluginDictionaryTrait.php b/src/Traits/PluginDictionaryTrait.php index <HASH>..<HASH> 100644 --- a/src/Traits/PluginDictionaryTrait.php +++ b/src/Traits/PluginDictionaryTrait.php @@ -134,18 +134,23 @@ trait PluginDictionaryTrait { * * @return \EclipseGc\Plugin\Factory\FactoryInterface ...
Rewriting the PluginDictionaryTrait::resolveFactory method to properly handle NULL factory from the plugin definition.
EclipseGc_Plugins
train
98329363d3ad8ca4cb0bfec5755bf42073f02b73
diff --git a/lib/crawler.js b/lib/crawler.js index <HASH>..<HASH> 100644 --- a/lib/crawler.js +++ b/lib/crawler.js @@ -710,7 +710,8 @@ Crawler.prototype.fetchQueueItem = function(queueItem) { queueItem.port !== 80 ? ":" + queueItem.port : "" - ) + ), + "Referer": queu...
Update crawler.js Add referer to request. Useful to found <I> referer for exemple.
simplecrawler_simplecrawler
train
e12edfe99fcf59db676d165b7c96a3a9c8d33389
diff --git a/spec/javascripts/integration/jsonp_spec.js b/spec/javascripts/integration/jsonp_spec.js index <HASH>..<HASH> 100644 --- a/spec/javascripts/integration/jsonp_spec.js +++ b/spec/javascripts/integration/jsonp_spec.js @@ -3,7 +3,7 @@ describe("JSONP", function() { beforeEach(function() { options = { ...
Use integration API in JSONP integration tests
pusher_pusher-js
train
981fb48991448bec171d7d4332d7dc514252f83f
diff --git a/lib/rules/id-match.js b/lib/rules/id-match.js index <HASH>..<HASH> 100644 --- a/lib/rules/id-match.js +++ b/lib/rules/id-match.js @@ -67,6 +67,8 @@ module.exports = { onlyDeclarations = !!options.onlyDeclarations, ignoreDestructuring = !!options.ignoreDestructuring; + let...
fix: do not report global references in `id-match` rule (#<I>) * fix: do not report global built-in references in `id-match` rule Fixes #<I> * test: add more cases * refactor: code * fix: do not report global references * fix: use the global scope * refactor: move scope call to `Program`
eslint_eslint
train
76b3b28f852e63755e1727ed0878b263f2949b1e
diff --git a/module/dca/tl_content.php b/module/dca/tl_content.php index <HASH>..<HASH> 100644 --- a/module/dca/tl_content.php +++ b/module/dca/tl_content.php @@ -63,7 +63,11 @@ $GLOBALS['TL_DCA']['tl_content']['fields']['bootstrap_buttons'] = array 'inputType' => 'select', 'options' ...
Always use chosen selects in mcw to avoid issues as mentioned in (contao-bootstrap/tab#4).
contao-bootstrap_buttons
train
ccbe7aa4ec174f7bb2c54973d42f52273ac800cd
diff --git a/apitools/base/py/credentials_lib.py b/apitools/base/py/credentials_lib.py index <HASH>..<HASH> 100644 --- a/apitools/base/py/credentials_lib.py +++ b/apitools/base/py/credentials_lib.py @@ -570,18 +570,23 @@ def GetUserinfo(credentials, http=None): # pylint: disable=invalid-name aren't available. ...
Ensuring that a new url is used after refreshing the credentials.
google_apitools
train
97b3d30cda79b79da19d10bfc9a7bcc5c239e8be
diff --git a/app_store/app_store.class.inc.php b/app_store/app_store.class.inc.php index <HASH>..<HASH> 100644 --- a/app_store/app_store.class.inc.php +++ b/app_store/app_store.class.inc.php @@ -73,7 +73,6 @@ class PodioAppStoreAPI { /** * Returns all the shares the organization with the give URL has shared in t...
Added new methods to the App store area for org app store
podio-community_podio-php
train
3fbad54abde9dcc4922fa9efc6f645b86121c432
diff --git a/releng/org.eclipse.orion.client.releng/builder/scripts/orion.build.js b/releng/org.eclipse.orion.client.releng/builder/scripts/orion.build.js index <HASH>..<HASH> 100644 --- a/releng/org.eclipse.orion.client.releng/builder/scripts/orion.build.js +++ b/releng/org.eclipse.orion.client.releng/builder/scripts/...
Help bundle missing from orion.build.js
eclipse_orion.client
train
1925dc389c045a5147d76255f862bd128093aebf
diff --git a/src-gwt/org/opencms/gwt/client/ui/resourceinfo/CmsResourceRelationView.java b/src-gwt/org/opencms/gwt/client/ui/resourceinfo/CmsResourceRelationView.java index <HASH>..<HASH> 100644 --- a/src-gwt/org/opencms/gwt/client/ui/resourceinfo/CmsResourceRelationView.java +++ b/src-gwt/org/opencms/gwt/client/ui/res...
Hiding edit button for detail container contents.
alkacon_opencms-core
train
7619d3b54a58d8c0440dbaf40eaf31205867180a
diff --git a/system/src/Grav/Common/Grav.php b/system/src/Grav/Common/Grav.php index <HASH>..<HASH> 100644 --- a/system/src/Grav/Common/Grav.php +++ b/system/src/Grav/Common/Grav.php @@ -152,18 +152,35 @@ class Grav extends Container // Redirection tests if ($page) { + $url = ...
Add params, query and fragment when redirecting to a language or default route
getgrav_grav
train
a5e166ffe3d07c22b5e6d6e65c7696b8ae33df42
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -237,14 +237,31 @@ If you specify searchable attributes from another model, like class Book < ActiveRecord::Base # ... + belongs_to :author + attr_searchable :author => "author.name" # ... end ``` -AttrS...
Explicitly supporting associations of associations
mrkamel_search_cop
train
861e929cec8fa8fbab06884d9605debb74cd7217
diff --git a/python/mxnet/ndarray.py b/python/mxnet/ndarray.py index <HASH>..<HASH> 100644 --- a/python/mxnet/ndarray.py +++ b/python/mxnet/ndarray.py @@ -2282,6 +2282,7 @@ def negative(arr): """ return multiply(arr, -1.0) + def load(fname): """Loads an array from file. @@ -2329,7 +2330,7 @@ def sav...
Properly check argument types in ndarray.save to avoid segfaults. (#<I>)
apache_incubator-mxnet
train
bcdce4894c71d6a0275bfe5d0743064c35b9bc07
diff --git a/py25/bacpypes/__init__.py b/py25/bacpypes/__init__.py index <HASH>..<HASH> 100755 --- a/py25/bacpypes/__init__.py +++ b/py25/bacpypes/__init__.py @@ -18,7 +18,7 @@ if _sys.platform not in _supported_platforms: # Project Metadata # -__version__ = '0.18.3' +__version__ = '0.18.4' __author__ = 'Joel Be...
merge the updated develop branch to test before merging it into master
JoelBender_bacpypes
train
01cfa56886874b5d92177834f717ca6457382271
diff --git a/PyFunceble/cli/threads/continue_producer.py b/PyFunceble/cli/threads/continue_producer.py index <HASH>..<HASH> 100644 --- a/PyFunceble/cli/threads/continue_producer.py +++ b/PyFunceble/cli/threads/continue_producer.py @@ -80,7 +80,7 @@ class ContinueProducerThread(ProducerThreadBase): def __init__(s...
Disable "keep session open" option. This patch fixes #<I>. Contributors: * @spirillen
funilrys_PyFunceble
train
5774f42447a6511b5b1e9c4033ab1a9eebc2d25b
diff --git a/vagrant_box_defaults.rb b/vagrant_box_defaults.rb index <HASH>..<HASH> 100644 --- a/vagrant_box_defaults.rb +++ b/vagrant_box_defaults.rb @@ -5,6 +5,6 @@ Vagrant.require_version ">= 2.2.0" $SERVER_BOX = "cilium/ubuntu-dev" $SERVER_VERSION= "170" $NETNEXT_SERVER_BOX= "cilium/ubuntu-next" -$NETNEXT_SERVER...
vagrant: bump ubuntu-next VM image The new VM image includes the latest version of cilium-{builder,runtime} images.
cilium_cilium
train
078d91dcc3169a221468aca0647ff0978988e271
diff --git a/src/csv_export_util.js b/src/csv_export_util.js index <HASH>..<HASH> 100644 --- a/src/csv_export_util.js +++ b/src/csv_export_util.js @@ -6,13 +6,15 @@ if(typeof window !== 'undefined'){ function toString(data, keys) { var dataString = ""; if (data.length === 0) return dataString; - + dataStrin...
fix row end with a superfluous comma when export csv
AllenFang_react-bootstrap-table
train
a72c0ae711f7143df7f42917509487660a6096e9
diff --git a/testsuite/shared/src/main/java/org/jboss/as/test/shared/TempTestModule.java b/testsuite/shared/src/main/java/org/jboss/as/test/shared/TempTestModule.java index <HASH>..<HASH> 100644 --- a/testsuite/shared/src/main/java/org/jboss/as/test/shared/TempTestModule.java +++ b/testsuite/shared/src/main/java/org/jb...
Log an error instead of failing if module delete fails Otherwise the build will fail on windows
wildfly_wildfly
train
1cdf3a8aa287a028e26400dd8b5c59d41f4a95a9
diff --git a/src/frontend/org/voltdb/plannodes/SchemaColumn.java b/src/frontend/org/voltdb/plannodes/SchemaColumn.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/plannodes/SchemaColumn.java +++ b/src/frontend/org/voltdb/plannodes/SchemaColumn.java @@ -201,7 +201,16 @@ public class SchemaColumn ...
ENG-<I> Tell the EE that the column name for every node's output schema is the column alias if there is a valid alias.
VoltDB_voltdb
train
7f778c8bdf650d4ea001acb34ab5b72817c81068
diff --git a/hn/hn.py b/hn/hn.py index <HASH>..<HASH> 100644 --- a/hn/hn.py +++ b/hn/hn.py @@ -118,7 +118,7 @@ class HN(object): points = 0 submitter = None submitter_profile = None - published_time = None + published_time = detail_con...
Fix publish time for job posting #5
karan_HackerNewsAPI
train
ec61302c8eeed1f9705bc51e6606220ce21f4a60
diff --git a/naming/go17.go b/naming/go17.go index <HASH>..<HASH> 100644 --- a/naming/go17.go +++ b/naming/go17.go @@ -1,4 +1,4 @@ -// +build go1.6, !go1.8 +// +build go1.6,!go1.8 /* *
naming: Fix build constraints for go<I> and go<I> (#<I>) "go<I>, !go<I>" constraints are interpreted as (version >= <I> AND ) OR version < <I>, where (version >= <I> AND ) is always false, so it matches all go versions before <I>, not only <I> and <I>. Removed a space, so the constraints are now matches only go<I>...
grpc_grpc-go
train
0f1f81c93265ec20f884b43b4529158362a2d57d
diff --git a/cassandra/policies.py b/cassandra/policies.py index <HASH>..<HASH> 100644 --- a/cassandra/policies.py +++ b/cassandra/policies.py @@ -186,25 +186,31 @@ class DCAwareRoundRobinPolicy(LoadBalancingPolicy): self.used_hosts_per_remote_dc = used_hosts_per_remote_dc self._dc_live_hosts = {} +...
Tolerate unknown host DCs more gracefully For load balancing purposes, hosts are assumed to be in the local datacenter now if the actual datacenter is unknown. However, this is still a slight problem with contact points in a remote DC when using DCAwareRoundRobinPolicy. See <URL>
datastax_python-driver
train
92c108c315a07df31b3590441ac62281163c3ba5
diff --git a/trunk/sphviewer.py b/trunk/sphviewer.py index <HASH>..<HASH> 100644 --- a/trunk/sphviewer.py +++ b/trunk/sphviewer.py @@ -4,6 +4,8 @@ from scipy import weave from scipy.weave import converters import sys import time +import multiprocessing +from multiprocessing import Manager def import_code(filename...
The code chaged a lot at this version. I have added a new subroutine to compute the smoothing length of the particles. Now, using the multiprocessing package of python, the neighbors search is performed in parallel among the available processors in the computer.
alejandrobll_py-sphviewer
train
c9a1ee3562e8c148c1fd756d13a4137be25677e9
diff --git a/PyPump.py b/PyPump.py index <HASH>..<HASH> 100644 --- a/PyPump.py +++ b/PyPump.py @@ -62,20 +62,24 @@ class PyPump(object): self.consumer = oauth.OAuthConsumer( client_name=client_name, client_type=client_type, - server="https://{server}{endpoi...
Fixes some really obvious bugs, how didn't i see these before?
xray7224_PyPump
train
9bc9eeb7b951d4b9daa2a1c59c5ba953d3a924b3
diff --git a/insights/specs/insights_archive.py b/insights/specs/insights_archive.py index <HASH>..<HASH> 100644 --- a/insights/specs/insights_archive.py +++ b/insights/specs/insights_archive.py @@ -16,7 +16,7 @@ class InsightsArchiveSpecs(Specs): brctl_show = simple_file("insights_commands/brctl_show") ceph_...
Fix insights archive spec for ceph_insights (#<I>)
RedHatInsights_insights-core
train
cfcd53db66a3557bdeace6a5bec435da15f14901
diff --git a/alot/commands/envelope.py b/alot/commands/envelope.py index <HASH>..<HASH> 100644 --- a/alot/commands/envelope.py +++ b/alot/commands/envelope.py @@ -441,7 +441,7 @@ class SignCommand(Command): if len(self.keyid) > 0: keyid = str(' '.join(self.keyid)) try: - ...
validate keys already in get_key() this way we don't have to call validate_key wherever we use get_key. And we would have to catch exceptions twice.
pazz_alot
train
0d79df5e1a4854dc19cd927e294e041a092c0e65
diff --git a/byte-buddy-dep/src/test/java/net/bytebuddy/agent/builder/AgentBuilderListenerTest.java b/byte-buddy-dep/src/test/java/net/bytebuddy/agent/builder/AgentBuilderListenerTest.java index <HASH>..<HASH> 100644 --- a/byte-buddy-dep/src/test/java/net/bytebuddy/agent/builder/AgentBuilderListenerTest.java +++ b/byte...
Added additional tests for duplex read edge.
raphw_byte-buddy
train
38cc10bcb769230da69e75a1d6c9cea1be14d5e1
diff --git a/lib/chef/application/solo.rb b/lib/chef/application/solo.rb index <HASH>..<HASH> 100644 --- a/lib/chef/application/solo.rb +++ b/lib/chef/application/solo.rb @@ -160,6 +160,11 @@ class Chef::Application::Solo < Chef::Application :description => 'Enable whyrun mode', :boolean => true + op...
A memorial for Ezra Zygmuntowicz Adding the --ez switch to Chef Solo, to memorialize Ezra. He was the father of Chef Solo, and without his early advocacy and evangelism, there would be no Chef today. Rest in peace, Ez.
chef_chef
train
2ef99f8a62a577bcd5560d1630f16e5fb2cb70b7
diff --git a/presto-main/src/main/java/com/facebook/presto/sql/planner/iterative/IterativeOptimizer.java b/presto-main/src/main/java/com/facebook/presto/sql/planner/iterative/IterativeOptimizer.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/sql/planner/iterative/IterativeOptimizer....
Add Lookup#resolveGroup method and make Lookup#resolve depricated In the future, equivalence based memo would store multiple plan nodes per group. Therefore resolve() that returns singleton should be unused.
prestodb_presto
train
b79326f598360e4f6867feeb06617c537fb27bff
diff --git a/gomatic/go_cd_configurator.py b/gomatic/go_cd_configurator.py index <HASH>..<HASH> 100755 --- a/gomatic/go_cd_configurator.py +++ b/gomatic/go_cd_configurator.py @@ -211,17 +211,24 @@ class GoCdConfigurator(object): class HostRestClient(object): - def __init__(self, host): + def __init__(self, h...
Adding ability to pass in username and password to gomatic for servers that require authentication. Also added ssl support
gocd-contrib_gomatic
train
c10742f582ca943d5ad76b1528214e71a4bddf9b
diff --git a/src/test/java/com/esotericsoftware/kryo/KryoTest.java b/src/test/java/com/esotericsoftware/kryo/KryoTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/esotericsoftware/kryo/KryoTest.java +++ b/src/test/java/com/esotericsoftware/kryo/KryoTest.java @@ -22,6 +22,7 @@ import java.lang.reflect.Constr...
Registered existing BigDecimalSerializer and BigIntegerSerializer - checking on the list why they are not already. Removed test for int/long primitive types as the test was wrong (due to auto boxing).
magro_kryo-serializers
train
f77949ce145cc8d0503df35718db84f1ebc46330
diff --git a/lib/vestal_versions/reversion.rb b/lib/vestal_versions/reversion.rb index <HASH>..<HASH> 100644 --- a/lib/vestal_versions/reversion.rb +++ b/lib/vestal_versions/reversion.rb @@ -6,10 +6,8 @@ module VestalVersions def revert_to(value) to_number = versions.number_at(value) - changes = chan...
Simplified the revert_to method to remove duplication with changes_between.
laserlemon_vestal_versions
train
6d324572ec148b0a0897177e00180024c23b4612
diff --git a/src/__tests__/wait-for-element-to-be-removed.js b/src/__tests__/wait-for-element-to-be-removed.js index <HASH>..<HASH> 100644 --- a/src/__tests__/wait-for-element-to-be-removed.js +++ b/src/__tests__/wait-for-element-to-be-removed.js @@ -42,6 +42,20 @@ test('requires an element to exist first', () => { ...
fix: prevent crashing on elements without parentElement (#<I>)
testing-library_dom-testing-library
train
3e0a383da14b9350bb949ed469a62a793a0669bb
diff --git a/app/models/no_cms/blocks/layout.rb b/app/models/no_cms/blocks/layout.rb index <HASH>..<HASH> 100644 --- a/app/models/no_cms/blocks/layout.rb +++ b/app/models/no_cms/blocks/layout.rb @@ -35,6 +35,22 @@ class NoCms::Blocks::Layout @fields end + def template + config[:template] + end + + def a...
Testing that other settings are also retrieved
simplelogica_nocms-blocks
train
066766578df857dc79f10112f3d8e9b28882aa8e
diff --git a/lib/gemstash/gem_source/upstream_source.rb b/lib/gemstash/gem_source/upstream_source.rb index <HASH>..<HASH> 100644 --- a/lib/gemstash/gem_source/upstream_source.rb +++ b/lib/gemstash/gem_source/upstream_source.rb @@ -14,7 +14,7 @@ module Gemstash rewriter = rack_env_rewriter.for(env) ret...
Rename params to captures
bundler_gemstash
train
f3e487274bdd10f3d63566b5280555939be30bfb
diff --git a/lfsapi/ssh_test.go b/lfsapi/ssh_test.go index <HASH>..<HASH> 100644 --- a/lfsapi/ssh_test.go +++ b/lfsapi/ssh_test.go @@ -51,6 +51,27 @@ func TestSSHCacheResolveFromCacheWithFutureExpiresAt(t *testing.T) { assert.Equal(t, "cache", res.Href) } +func TestSSHCacheResolveFromCacheWithFutureExpiresIn(t *te...
lfsapi/ssh_test: expand permutations of expires_at & expires_in
git-lfs_git-lfs
train
52b389c259c6e3bba31067d76efdb30ab46cff4f
diff --git a/tiny-async-core/src/test/java/eu/toolchain/async/DelayedCollectCoordinatorTest.java b/tiny-async-core/src/test/java/eu/toolchain/async/DelayedCollectCoordinatorTest.java index <HASH>..<HASH> 100644 --- a/tiny-async-core/src/test/java/eu/toolchain/async/DelayedCollectCoordinatorTest.java +++ b/tiny-async-co...
Add test for cancellation in DelayedCollectCoordinatorTest
udoprog_tiny-async-java
train
4333b4cf3029e2931cfa3944ee4443ef32fd9148
diff --git a/p2p/net/swarm/swarm_notif_test.go b/p2p/net/swarm/swarm_notif_test.go index <HASH>..<HASH> 100644 --- a/p2p/net/swarm/swarm_notif_test.go +++ b/p2p/net/swarm/swarm_notif_test.go @@ -17,8 +17,10 @@ func streamsSame(a, b inet.Stream) bool { } func TestNotifications(t *testing.T) { + const swarmSize = 5 +...
update deps * Also, make notifications async to prevent them from deadlocking.
libp2p_go-libp2p
train
857c3c775d79743a549eb664aa3011d64b4e8c5d
diff --git a/lib/Graph.js b/lib/Graph.js index <HASH>..<HASH> 100644 --- a/lib/Graph.js +++ b/lib/Graph.js @@ -32,8 +32,15 @@ function Graph() { /* * Constructs and returns a new graph that includes only the nodes in `us`. Any * edges that have both their source and target in the set `us` are also - * included in ...
Add order + size to graph / fix bug in Graph.equals
dagrejs_dagre-d3
train
0a41c9639a7e7443187d1893a90249a31f4e485c
diff --git a/lib/regarray.rb b/lib/regarray.rb index <HASH>..<HASH> 100755 --- a/lib/regarray.rb +++ b/lib/regarray.rb @@ -411,9 +411,9 @@ end begin list=Thread.current[:$Reg__Subseq__subitemranges_in_progress]||={} id=__id__ - list[id] and throw(id.to_s,0..Infinity) + list[id] a...
catch/throw in <I> must be given a symbol
coatl_reg
train
fdda48351b7df650b8edfe73a366901f3be4f0b2
diff --git a/test/configuration_test.rb b/test/configuration_test.rb index <HASH>..<HASH> 100644 --- a/test/configuration_test.rb +++ b/test/configuration_test.rb @@ -6,6 +6,8 @@ describe Lotus::Configuration do module MockApp end + ENV['RACK_ENV'] = nil + ENV['LOTUS_ENV'] = nil ENV['LOTUS_HOS...
Ensure to reset env vars for Lotus::Configuration tests
hanami_hanami
train
427ca89c0050f3445f90926c26420d24997054a1
diff --git a/lib/gimli/converter.rb b/lib/gimli/converter.rb index <HASH>..<HASH> 100644 --- a/lib/gimli/converter.rb +++ b/lib/gimli/converter.rb @@ -31,7 +31,12 @@ module Gimli end end if !merged_contents.empty? - pdf_kit(merged_contents.join).to_file(::File.join(output_dir, "#{Dir.getwd...
merged pdf takes name from target directory
walle_gimli
train
e4c04f8976f9100a3e2c2141fdab449b50f891d5
diff --git a/src/vivarium/framework/state_machine.py b/src/vivarium/framework/state_machine.py index <HASH>..<HASH> 100644 --- a/src/vivarium/framework/state_machine.py +++ b/src/vivarium/framework/state_machine.py @@ -333,7 +333,7 @@ class TransitionSet: # met, the gated transition becomes the default (likely...
correctly detect multiple transitions specified with probability 1
ihmeuw_vivarium
train
2e914c06eb9b68335357d3f974a6f907deaba912
diff --git a/Neos.Flow/Classes/Persistence/Doctrine/ObjectValidationAndDeDuplicationListener.php b/Neos.Flow/Classes/Persistence/Doctrine/ObjectValidationAndDeDuplicationListener.php index <HASH>..<HASH> 100644 --- a/Neos.Flow/Classes/Persistence/Doctrine/ObjectValidationAndDeDuplicationListener.php +++ b/Neos.Flow/Cla...
BUGFIX: Don't overwrite entity insertions
neos_flow-development-collection
train
5a27cddd57279547d81de539080a92db8f72fb6b
diff --git a/packages/sproutcore-handlebars/lib/helpers/view.js b/packages/sproutcore-handlebars/lib/helpers/view.js index <HASH>..<HASH> 100644 --- a/packages/sproutcore-handlebars/lib/helpers/view.js +++ b/packages/sproutcore-handlebars/lib/helpers/view.js @@ -9,11 +9,12 @@ require("sproutcore-handlebars"); var g...
Make bindings set up in {{view}} helpers relative to the current Handlebars context instead of the view.
emberjs_ember.js
train
684c62716569d06ddde36229af88a1f990a4ce31
diff --git a/features/bootstrap/FeatureContext.php b/features/bootstrap/FeatureContext.php index <HASH>..<HASH> 100644 --- a/features/bootstrap/FeatureContext.php +++ b/features/bootstrap/FeatureContext.php @@ -429,44 +429,36 @@ class FeatureContext extends BehatContext implements ClosuredContextInterface { $this->p...
Composer test : wp-cli and WordPress as dependencies
wp-cli_wp-cli-tests
train
138822ca6d43aecef00df333b2d64124cfe42b11
diff --git a/tests/junit/org/jgroups/tests/SizeTest.java b/tests/junit/org/jgroups/tests/SizeTest.java index <HASH>..<HASH> 100644 --- a/tests/junit/org/jgroups/tests/SizeTest.java +++ b/tests/junit/org/jgroups/tests/SizeTest.java @@ -1,4 +1,4 @@ -// $Id: SizeTest.java,v 1.15 2006/07/06 10:32:28 belaban Exp $$ +// $Id:...
added test for ViewSyncHeader
belaban_JGroups
train
12f0a274e4791b89e87e1a664adc198787a4639d
diff --git a/oide/apps/codeeditor/tests/e2e/filetree.spec.js b/oide/apps/codeeditor/tests/e2e/filetree.spec.js index <HASH>..<HASH> 100644 --- a/oide/apps/codeeditor/tests/e2e/filetree.spec.js +++ b/oide/apps/codeeditor/tests/e2e/filetree.spec.js @@ -156,22 +156,28 @@ describe('OIDE Filetree', function(){ var init...
Finished rewriting existing E2E tests.
SandstoneHPC_sandstone-ide
train
235aeb165163e65143d3229e235a3a86339cda92
diff --git a/arctic/_compression.py b/arctic/_compression.py index <HASH>..<HASH> 100644 --- a/arctic/_compression.py +++ b/arctic/_compression.py @@ -7,7 +7,8 @@ try: except ImportError as e: from lz4 import compress as lz4_compress, compressHC as lz4_compressHC, decompress as lz4_decompress -from ._config imp...
Do not remove some imports unused in that module Other modules expect it to be in the global scope on inheriting another module..
manahl_arctic
train
8ae9b05fa0ca579ecabcd563e6ba75ea0f44f074
diff --git a/actionpack/lib/action_view/template/error.rb b/actionpack/lib/action_view/template/error.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_view/template/error.rb +++ b/actionpack/lib/action_view/template/error.rb @@ -21,17 +21,18 @@ module ActionView super("Missing #{template_type} #{path} ...
Make backtrace_cleaner work as expected. Prior to this patch, the Full Trace rarely showed the full trace. Also, increase performance considerably.
rails_rails
train
0db29e3813961053333426eb2e4c3b1d66bdc87f
diff --git a/src/BasicModel.php b/src/BasicModel.php index <HASH>..<HASH> 100644 --- a/src/BasicModel.php +++ b/src/BasicModel.php @@ -1461,7 +1461,7 @@ class $name extends " . $this->new_model_namespace . ($as_view ? 'ViewModel' : ' } } $obj = new $class(null); - ...
Better testing of model markdown gen
CORE-POS_Common-Bundle
train
7080ffa1d9e5f308fc7fff5d95fdbf61eb1bb34d
diff --git a/tests/Integration/Command/RunCommandTest.php b/tests/Integration/Command/RunCommandTest.php index <HASH>..<HASH> 100644 --- a/tests/Integration/Command/RunCommandTest.php +++ b/tests/Integration/Command/RunCommandTest.php @@ -96,4 +96,11 @@ class RunCommandTest extends BaseTestCase '--configur...
Add a test for RunCommand (#<I>)
bmitch_churn-php
train