hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
712b5e46c539096fd204535e61c568e455f4c604
diff --git a/context_test.go b/context_test.go index <HASH>..<HASH> 100644 --- a/context_test.go +++ b/context_test.go @@ -7,7 +7,6 @@ import ( "encoding/xml" "errors" "fmt" - "github.com/labstack/gommon/log" "io" "math" "mime/multipart" @@ -19,6 +18,7 @@ import ( "text/template" "time" + "github.com/...
format code (gofmt + trim trailing space) (#<I>)
labstack_echo
train
0f582476799f4bd169e0c8236e40c0efd778a465
diff --git a/km3modules/plot.py b/km3modules/plot.py index <HASH>..<HASH> 100644 --- a/km3modules/plot.py +++ b/km3modules/plot.py @@ -173,8 +173,8 @@ class IntraDOMCalibrationPlotter(kp.Module): ) sorted_dom_ids = sorted( calibration.keys(), - key=lambda d: - str(se...
Use omkey property to sort
tamasgal_km3pipe
train
41441d2e06c1f012c58fce10615ee414ad263196
diff --git a/spec/dfeojm_spec.rb b/spec/dfeojm_spec.rb index <HASH>..<HASH> 100644 --- a/spec/dfeojm_spec.rb +++ b/spec/dfeojm_spec.rb @@ -2,30 +2,38 @@ require 'dfeojm' describe DFEOJM do it "provides usage information by default" do - result = %x[dfeojm 2>&1] + output = `dfeojm 2>&1` + result = $?.exit...
reorganized spec and checked exit codes
steakknife_dfeojm
train
66cb17ec07c2fa146b4cd0984095b74ed1722b66
diff --git a/satpy/readers/fci_l1c_fdhsi.py b/satpy/readers/fci_l1c_fdhsi.py index <HASH>..<HASH> 100644 --- a/satpy/readers/fci_l1c_fdhsi.py +++ b/satpy/readers/fci_l1c_fdhsi.py @@ -182,8 +182,7 @@ class FCIFDHSIFileHandler(NetCDF4FileHandler): def calc_area_extent(self, key): """Calculate area extent ...
FCI reader, adapt docstring to reality
pytroll_satpy
train
98d9f0c410588ce9240638f9f1c2e6c380ff721f
diff --git a/oct/core/hq.py b/oct/core/hq.py index <HASH>..<HASH> 100644 --- a/oct/core/hq.py +++ b/oct/core/hq.py @@ -18,6 +18,7 @@ class HightQuarter(object): :param str topic: topic for external publishing socket :param bool with_forwarder: tell HQ if it should connects to forwarder, default False :pa...
prepare hq for forwarder #<I>
TheGhouls_oct
train
7e65b453a26bb21f83b35f8411cae3a3b1d5afd2
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,5 +1,7 @@ require 'simplecov' -SimpleCov.start +SimpleCov.start do + add_filter "/spec/" +end require 'bini' require 'bini/optparser'
Filtered out my specs from my coverage, still have <I>%.
erniebrodeur_bini
train
5483ae6df014a6ba35a07754c1996752532684f2
diff --git a/app/src/Gruntfile.js b/app/src/Gruntfile.js index <HASH>..<HASH> 100644 --- a/app/src/Gruntfile.js +++ b/app/src/Gruntfile.js @@ -9,6 +9,7 @@ module.exports = function(grunt) { path: { tmp: 'tmp', pages: 'tmp/pages', + sourcemaps: '../view/maps', d...
Now generate js souremaps in view/maps
bolt_bolt
train
be0b37f28cdc829b7351988d360dba88c391b71a
diff --git a/lib/from.js b/lib/from.js index <HASH>..<HASH> 100644 --- a/lib/from.js +++ b/lib/from.js @@ -220,8 +220,17 @@ return (function () { var delay = function (func) { setTimeout(func, 0) }; + // For API consistency with `from.thisDirectory`, `from.thisPath` returns a + // `Promise`. There’s no *ac...
`from.thisPath` is now an async getter
ELLIOTTCABLE_from
train
d5667b2dcafc1094126ec897aee1f1543fa673e8
diff --git a/ui/src/side_nav/components/UserNavBlock.js b/ui/src/side_nav/components/UserNavBlock.js index <HASH>..<HASH> 100644 --- a/ui/src/side_nav/components/UserNavBlock.js +++ b/ui/src/side_nav/components/UserNavBlock.js @@ -3,7 +3,7 @@ import {Link} from 'react-router' import {connect} from 'react-redux' impor...
Only show Manage Organizations to SuperAdmin
influxdata_influxdb
train
37ebafc5926101a60a82c6716eb264ce26b398b1
diff --git a/TeamComp/tier.py b/TeamComp/tier.py index <HASH>..<HASH> 100644 --- a/TeamComp/tier.py +++ b/TeamComp/tier.py @@ -25,16 +25,28 @@ class Tier(Enum): silver = 5 bronze = 6 + def __lt__(self,other): + return self.value > other.value + + def __le__(self,other): + return self.val...
Overloeaded the comparison function for Tier
MakersF_LoLScraper
train
1f00da5f083ec7d68c56dc4958d3d415fc77b4a6
diff --git a/example1.py b/example1.py index <HASH>..<HASH> 100644 --- a/example1.py +++ b/example1.py @@ -27,6 +27,11 @@ def func2(q1, q2): """ a = q1/q2 + + if q2 == 5: + z = 7 + IPS() + return a @@ -46,10 +51,9 @@ z = func1(x) - 5 u = y**2 + z**2# should be an array ful...
Bugfix (configurable.MultipleInstanceError was triggered probably by some update)
cknoll_ipydex
train
496b5659e127a5bf0e51fa8a7a78d9c068020a8b
diff --git a/flac/decode.go b/flac/decode.go index <HASH>..<HASH> 100644 --- a/flac/decode.go +++ b/flac/decode.go @@ -21,11 +21,7 @@ func Decode(rc io.ReadCloser) (s beep.StreamSeekCloser, format beep.Format, err d.rc.Close() } }() - rsc, ok := rc.(io.ReadSeeker) - if !ok { - panic(fmt.Errorf("%T does not i...
flac: remove ReadSeeker assertion The underlying flac library does not yet support seeking, and when that support is added, this should be done more gracefully in beep so that users can still use streaming data not implementing io.Seeker Fixes #<I>.
faiface_beep
train
860a8fb7a6981c5f68408a389b5639fc5110a7b1
diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/subscription/SubscriptionInterceptorLoader.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/subscription/SubscriptionInterceptorLoader.java index <HASH>..<HASH> 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/subscripti...
Emergency fix. Normally I'd write a test for this, but this startup behaviour is changing in my next PR.
jamesagnew_hapi-fhir
train
2811fb562b961c406cf483d6bd8a2e7c89132680
diff --git a/lib/ps4socket.js b/lib/ps4socket.js index <HASH>..<HASH> 100644 --- a/lib/ps4socket.js +++ b/lib/ps4socket.js @@ -32,8 +32,7 @@ const PacketFactory = require('./packets.js'); const { delayMillis } = require('./util'); const DEFAULT_PORT = 997; -const DEFAULT_LOGIN_TIMEOUT = 5000; -const LOGIN_RETRY_DEL...
Disable login retry in favor of a longer timeout This seems more in line with what the app does; it just has a blanket server timeout of <I>s. This approach not only simplifies things, but eliminates another possible candidate for the LOGIN_MGR_BUSY issue (see #<I>). Sadly, it does not actually solve the issue, howeve...
dhleong_ps4-waker
train
a82d018e722899948981e6cbeac9dac8fe5087e2
diff --git a/lib/cli/file-set.js b/lib/cli/file-set.js index <HASH>..<HASH> 100644 --- a/lib/cli/file-set.js +++ b/lib/cli/file-set.js @@ -236,12 +236,22 @@ function add(file) { 'fileSet': self }; - filePipeline.run(context, function (err) { - if (err) { - file.fail(err); - }...
Fix premature reporting A bug was recently introduced where, when the first file had failed before it was passed to the file pipeline, it could cause the file queue to flush.
remarkjs_remark
train
a6dbccd29b8cb6f6c18f7c636588d634ead3f341
diff --git a/composer.json b/composer.json index <HASH>..<HASH> 100644 --- a/composer.json +++ b/composer.json @@ -11,9 +11,9 @@ ], "require": { "php": ">=5.3.2", - "precore/precore": "~1.0", + "precore/precore": "~1.3", "doctrine/annotations": "~1.1", - "trf4php/trf4php...
removed inline ObjectClass instantiations
szjani_predaddy
train
00d137edec47992e2c6ce4c9f5ece1b4854785f5
diff --git a/go/vt/proto/query/query.pb.go b/go/vt/proto/query/query.pb.go index <HASH>..<HASH> 100644 --- a/go/vt/proto/query/query.pb.go +++ b/go/vt/proto/query/query.pb.go @@ -3629,7 +3629,7 @@ type StreamHealthResponse struct { // realtime_stats contains information about the tablet status. // It is only filled...
healthcheck: update protobuf generated sources, fix shadowing bug which results in incomplete error information
vitessio_vitess
train
8adac7586bb1ca264ae47ee3f599d43fe5dcb8cd
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,6 @@ { "version": "0.0.0", "name": "haul", - "version": "0.0.1", "description": "Haul is a new command line tools for React Native", "bin": "./src/cli", "scripts": { diff --git a/src/cl...
Pass cwd to config getter
callstack_haul
train
01c4f63c2ba66ca260c64841ad05f3f35df2bd52
diff --git a/lib/asciidoctor/rouge.rb b/lib/asciidoctor/rouge.rb index <HASH>..<HASH> 100644 --- a/lib/asciidoctor/rouge.rb +++ b/lib/asciidoctor/rouge.rb @@ -1,4 +1,5 @@ # frozen_string_literal: true +require 'asciidoctor' require 'asciidoctor/extensions' require 'asciidoctor/rouge/constants' require 'asciidoctor/...
Fix compatibility with asciidoctor <I>
jirutka_asciidoctor-rouge
train
edb9904138ce4e20c7597ff04f6c480997ad095d
diff --git a/mqemitter-redis.js b/mqemitter-redis.js index <HASH>..<HASH> 100644 --- a/mqemitter-redis.js +++ b/mqemitter-redis.js @@ -77,6 +77,7 @@ function MQEmitterRedis (opts) { MQEmitter.call(this, opts) this._opts.regexWildcardOne = new RegExp(this._opts.wildcardOne.replace(/([/,!\\^${}[\]().*+?|<>\-&])/g...
fix: Wildcard some to work with # (#<I>) * fix: Wildcard some to work with # * check if matchEmptyLevels is enabled
mcollina_mqemitter-redis
train
e13fe724557d225149de7e1ec442f8a66afbdd60
diff --git a/opal/corelib/string/unpack.rb b/opal/corelib/string/unpack.rb index <HASH>..<HASH> 100644 --- a/opal/corelib/string/unpack.rb +++ b/opal/corelib/string/unpack.rb @@ -1,3 +1,4 @@ +require 'base64' require 'corelib/pack_unpack/format_string_parser' class String @@ -234,23 +235,7 @@ class String fu...
Use a single implementation for Base<I> Previously the behavior was buggy on some platforms.
opal_opal
train
969873441ec42f1790b3b601f04e46d9493a64d8
diff --git a/src/js/ripple/transaction.js b/src/js/ripple/transaction.js index <HASH>..<HASH> 100644 --- a/src/js/ripple/transaction.js +++ b/src/js/ripple/transaction.js @@ -529,7 +529,7 @@ Transaction.prototype.setFlags = function(flags) { Transaction.prototype.accountSet = function(src) { if (typeof src === 'obj...
Recognize account option as equivalent to source in transaction construction
ChainSQL_chainsql-lib
train
923f8893bc7d378bb4853a9fc57b3c620b4ca928
diff --git a/ibis/backends/base/sql/alchemy/datatypes.py b/ibis/backends/base/sql/alchemy/datatypes.py index <HASH>..<HASH> 100644 --- a/ibis/backends/base/sql/alchemy/datatypes.py +++ b/ibis/backends/base/sql/alchemy/datatypes.py @@ -1,5 +1,7 @@ +from __future__ import annotations + import functools -from typing impo...
chore: pyupgrade and add annotations from future
ibis-project_ibis
train
9a77af6cde50a70bf8e351c3e314ed4d505e6d1b
diff --git a/test/jade.test.js b/test/jade.test.js index <HASH>..<HASH> 100644 --- a/test/jade.test.js +++ b/test/jade.test.js @@ -272,6 +272,10 @@ module.exports = { err.message); }, + 'test html 5 mode': function(assert){ + assert.equal('<!DOCTYPE html>\n<input type="checked" checked...
Added a test for html 5 mode
pugjs_then-pug
train
73fc6e859d7b0d800dc01a21d32cd458c3a60205
diff --git a/pkg/policy/api/ingress.go b/pkg/policy/api/ingress.go index <HASH>..<HASH> 100644 --- a/pkg/policy/api/ingress.go +++ b/pkg/policy/api/ingress.go @@ -30,12 +30,9 @@ import ( // the effects of any Requires field in any rule will apply to all other // rules as well. // -// - For now, combining ToPorts...
policy: Allow CIDR-dependent L4 support on ingress This allows policies such as FromCIDR + ToPorts on ingress.
cilium_cilium
train
903b1dfd50f5b740d28a7bc8d933e037aa95776e
diff --git a/telebot/__init__.py b/telebot/__init__.py index <HASH>..<HASH> 100644 --- a/telebot/__init__.py +++ b/telebot/__init__.py @@ -909,9 +909,10 @@ class TeleBot: def answer_pre_checkout_query(self, pre_checkout_query_id, ok, error_message=None): return apihelper.answer_pre_checkout_query(self.tok...
added parse_mode in edit_message_caption
eternnoir_pyTelegramBotAPI
train
a4f2240aa582d032aa1d22983a834a83d2e1df74
diff --git a/core/src/main/java/com/orientechnologies/orient/core/record/OElement.java b/core/src/main/java/com/orientechnologies/orient/core/record/OElement.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/orientechnologies/orient/core/record/OElement.java +++ b/core/src/main/java/com/orientechnologies/or...
Added removeProperty and setProperty with type in OElement
orientechnologies_orientdb
train
1a48a1b83fb10aa44e9bb02f89eedc0fd93588cb
diff --git a/src/client/utils/ua.js b/src/client/utils/ua.js index <HASH>..<HASH> 100644 --- a/src/client/utils/ua.js +++ b/src/client/utils/ua.js @@ -1,5 +1,6 @@ -const ua = typeof navigator === 'undefined'? '' : navigator.userAgent; +const ua = typeof navigator === 'undefined'? '' : navigator.userAgent, + platform...
Use navigator.platform to detect ios in desktop mode
dfilatov_vidom
train
6b42b45685715aa92efaa3e818f826e3bc3b7b55
diff --git a/test/java-callStaticMethod-test.js b/test/java-callStaticMethod-test.js index <HASH>..<HASH> 100644 --- a/test/java-callStaticMethod-test.js +++ b/test/java-callStaticMethod-test.js @@ -12,6 +12,12 @@ exports['Java - Call Static Method'] = nodeunit.testCase({ }); }, + "callStaticMethod without a...
test case for [issue #<I>]
joeferner_node-java
train
0fe520de5636de0e3223b3c7e36b9a001072edde
diff --git a/src/xPDO/xPDO.php b/src/xPDO/xPDO.php index <HASH>..<HASH> 100644 --- a/src/xPDO/xPDO.php +++ b/src/xPDO/xPDO.php @@ -1101,11 +1101,15 @@ class xPDO { if (!$criteria instanceof Om\xPDOCriteria) { $this->log(xPDO::LOG_LEVEL_WARN, "Invalid criteria object of class {$type} encoun...
Modify getCriteriaType to return xPDOQuery|xPDOCriteria After refactoring xPDO into the \xPDO namespace, getCriteriaType returns the fully-qualified class name which breaks a feature of xPDOIterator that depends on methods of xPDOQuery derivatives.
modxcms_xpdo
train
8c0ce827b725ee42ba0f1cf8e4db8e904b052905
diff --git a/src/molecules/formfields/DateField/index.js b/src/molecules/formfields/DateField/index.js index <HASH>..<HASH> 100644 --- a/src/molecules/formfields/DateField/index.js +++ b/src/molecules/formfields/DateField/index.js @@ -9,20 +9,19 @@ function DateField(props) { className, children, label, ...
change DateField to work with Field
policygenius_athenaeum
train
2040c7caa55c53bfb5285825f120785ef0e032c2
diff --git a/tests/unit/grains/core_test.py b/tests/unit/grains/core_test.py index <HASH>..<HASH> 100644 --- a/tests/unit/grains/core_test.py +++ b/tests/unit/grains/core_test.py @@ -247,6 +247,7 @@ class CoreGrainsTestCase(TestCase): self.assertEqual(os_grains.get('oscodename'), os_release_map['oscodename']) ...
Add unit test for osmajorrelease grain
saltstack_salt
train
09a47651a4a90239a0c23720fbbb3593599dfaf4
diff --git a/test/api.js b/test/api.js index <HASH>..<HASH> 100644 --- a/test/api.js +++ b/test/api.js @@ -14,7 +14,11 @@ function apiCreator(options) { options.powerAssert = true; options.projectDir = options.projectDir || ROOT_DIR; options.resolveTestsFrom = options.resolveTestsFrom || options.projectDir; - ret...
Avoid helper compilation during API tests We're ending up compiling all helper-like files in AVA's test/ directory, which is unnecessary.
andywer_ava-ts
train
4247fdcace34196bb1801bcb25162b5fcf9b2c83
diff --git a/glances/glances.py b/glances/glances.py index <HASH>..<HASH> 100755 --- a/glances/glances.py +++ b/glances/glances.py @@ -43,6 +43,12 @@ gettext.install(__appname__) import json import collections +# Somes libs depends of OS +is_Bsd = sys.platform.endswith('bsd') +is_Linux = sys.platform.startswith('li...
Filter and hide idle processes on Windows and FreeBSD
nicolargo_glances
train
add2360a37c493f75626ed6f39deee0e1f935abe
diff --git a/src/org/jgroups/util/FixedSizeBitSet.java b/src/org/jgroups/util/FixedSizeBitSet.java index <HASH>..<HASH> 100644 --- a/src/org/jgroups/util/FixedSizeBitSet.java +++ b/src/org/jgroups/util/FixedSizeBitSet.java @@ -119,7 +119,7 @@ public class FixedSizeBitSet { */ public void clear(int from, int ...
FixedSizeBitSet.clear(): return rather than throw exception when bounds are incorrect (<URL>)
belaban_JGroups
train
272725188d65d2a292c7737f97176e92e6ffe103
diff --git a/base.php b/base.php index <HASH>..<HASH> 100644 --- a/base.php +++ b/base.php @@ -2270,7 +2270,7 @@ final class Base extends Prefab implements ArrayAccess { session_cache_limiter(''); call_user_func_array('session_set_cookie_params', $jar=[ - 'expire'=>time(), + 'expire'=>0, 'path'=>$b...
Rework initial reference for cookie expiry
bcosca_fatfree-core
train
33978b93f7751b7852ce70552e1bfb8f4e4efd26
diff --git a/lib/plugins/bash_build_actions.rb b/lib/plugins/bash_build_actions.rb index <HASH>..<HASH> 100644 --- a/lib/plugins/bash_build_actions.rb +++ b/lib/plugins/bash_build_actions.rb @@ -7,10 +7,17 @@ module BashBuildActions class Bash < CxActionsPluginBase extend Cmd def cmd(bash_cmd) - run b...
CX #<I> exit cx build when it returns failure exitstatus This allow us to chain cx commands together and break the chain on a failure, which in this case would stop broken code being submitted.
imaginatelabs_radial
train
ab088537f212b36823dd78fdf3d836559d28ef22
diff --git a/lib/wed/modes/generic/generic_tr.js b/lib/wed/modes/generic/generic_tr.js index <HASH>..<HASH> 100644 --- a/lib/wed/modes/generic/generic_tr.js +++ b/lib/wed/modes/generic/generic_tr.js @@ -52,10 +52,21 @@ function Registry(editor) { data.element_name); - ...
There is no need to fill recursively when using transformations.
mangalam-research_wed
train
1472eb3adec030b0499a3d3d6c3bbaab67fdb3da
diff --git a/jax/scipy/sparse/linalg.py b/jax/scipy/sparse/linalg.py index <HASH>..<HASH> 100644 --- a/jax/scipy/sparse/linalg.py +++ b/jax/scipy/sparse/linalg.py @@ -82,6 +82,10 @@ def cg(A, b, x0=None, *, tol=1e-5, atol=0.0, maxiter=None, M=None): need to supply the linear operator ``A`` as a function instead of a...
DOC: note how derivatives are computed for CG (#<I>)
tensorflow_probability
train
69b1c0e58b80e6db74a7984ba9ceeaaa0e7c1914
diff --git a/lib/Account.js b/lib/Account.js index <HASH>..<HASH> 100644 --- a/lib/Account.js +++ b/lib/Account.js @@ -20,14 +20,14 @@ Account.prototype.sign = function sign(request, cb) { hash = hash.update(request.toString()).digest() request.headers["x-amzn-authorization"] = "AWS3 " + [ - "AWSAccess...
fix session refresh bug security token requests need to be signed with the 'original' credentials, not the credentials from the previous security token
jed_dynamo
train
5717bd3fc32816b8520d54acaa3dfb32204a83a6
diff --git a/src/Behat/Behat/Gherkin/Loader/FeatureSuiteLoader.php b/src/Behat/Behat/Gherkin/Loader/FeatureSuiteLoader.php index <HASH>..<HASH> 100644 --- a/src/Behat/Behat/Gherkin/Loader/FeatureSuiteLoader.php +++ b/src/Behat/Behat/Gherkin/Loader/FeatureSuiteLoader.php @@ -65,6 +65,7 @@ class FeatureSuiteLoader extend...
Follow symlinks (closes #<I>)
Behat_Behat
train
d1cf268be959eda318963e0a4969489d009c1141
diff --git a/synapse/tests/test_lib_ingest.py b/synapse/tests/test_lib_ingest.py index <HASH>..<HASH> 100644 --- a/synapse/tests/test_lib_ingest.py +++ b/synapse/tests/test_lib_ingest.py @@ -516,7 +516,7 @@ class IngTest(SynTest): gest = s_ingest.Ingest(info) gest.ingest(core,data=data) - ...
tweak unit test for correct conditional behavior
vertexproject_synapse
train
93722b81dff6322eaeb171564f18afc9dbbbd2b2
diff --git a/src/Rules/ModelRuleHelper.php b/src/Rules/ModelRuleHelper.php index <HASH>..<HASH> 100644 --- a/src/Rules/ModelRuleHelper.php +++ b/src/Rules/ModelRuleHelper.php @@ -18,10 +18,10 @@ final class ModelRuleHelper { public function findModelReflectionFromType(Type $type): ?ClassReflection { - ...
fix: inverted check in the ModelRuleHelper (#<I>)
nunomaduro_larastan
train
7179e30fc9593b74261dac176cd8e74a1d418f5e
diff --git a/lib/wrappers/sync-angular.js b/lib/wrappers/sync-angular.js index <HASH>..<HASH> 100644 --- a/lib/wrappers/sync-angular.js +++ b/lib/wrappers/sync-angular.js @@ -14,8 +14,8 @@ angular.module('wfm.sync.service', []) sync.init($fh, mediator, syncOptions); } - syncService.manage = function(datasetI...
Added the extra manage params to the angular and mediator wrappers
raincatcher-beta_raincatcher-sync
train
1017903e46d9f263f9f99fb8706843f99bf8a8b9
diff --git a/slither/core/declarations/contract.py b/slither/core/declarations/contract.py index <HASH>..<HASH> 100644 --- a/slither/core/declarations/contract.py +++ b/slither/core/declarations/contract.py @@ -21,7 +21,7 @@ class Contract(ChildSlither, SourceMapping): self._id = None self._inheritanc...
Refactored property/field names for improved accuracy.
crytic_slither
train
3f630d8ad7c162d7cac8fedfb32b35f0cc7240ff
diff --git a/pkg/kubelet/kubelet.go b/pkg/kubelet/kubelet.go index <HASH>..<HASH> 100644 --- a/pkg/kubelet/kubelet.go +++ b/pkg/kubelet/kubelet.go @@ -2657,7 +2657,7 @@ func readyPodCondition(isPodReady bool, reason, message string) []api.PodConditi } // getPodReadyCondition returns ready condition if all container...
when pod has successed, update condition to PodCompleted
kubernetes_kubernetes
train
6541519acb31c1fb835f668e442e3284fec84606
diff --git a/Classes/Service/CompileService.php b/Classes/Service/CompileService.php index <HASH>..<HASH> 100644 --- a/Classes/Service/CompileService.php +++ b/Classes/Service/CompileService.php @@ -37,7 +37,7 @@ class CompileService { /** * @param string $file */ - public function getCompiledFile($...
[TASK] Make getCompiledFile a static method - fixes #<I> #<I> TYPO3 sets the deprecation strategy to the strictest possible when in Development mode. That includes hard Exceptions on PHP <I>. This patch makes the method static which shouldnt harm anyone.
benjaminkott_bootstrap_package
train
f89f00444580c5a7b900c91b25b98cff3d76011d
diff --git a/fhir/fhir_requests.go b/fhir/fhir_requests.go index <HASH>..<HASH> 100644 --- a/fhir/fhir_requests.go +++ b/fhir/fhir_requests.go @@ -48,7 +48,7 @@ func GetPatientConditions(fullFhirUrl string, ts time.Time) ([]models.Condition, c, ok := resource.Resource.(models.Condition) if ok { cStart := getC...
When filtering for events to include in the risk assessment, be sure to include events before *and at* the reference time
intervention-engine_riskservice
train
52141aae7f073fe917c841ddbb4531a9beb04ddc
diff --git a/version.py b/version.py index <HASH>..<HASH> 100644 --- a/version.py +++ b/version.py @@ -21,7 +21,7 @@ Every version number class implements the following interface: an equivalent string -- ie. one that will generate an equivalent version number instance) * __repr__ generates Python code to r...
Issue #<I>: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from the standard library and tests.
pypa_setuptools
train
217e28db56402c9fb30ec6db34af74049ec398f0
diff --git a/src/Bartlett/Reflect/PhpParser/NodeProcessor.php b/src/Bartlett/Reflect/PhpParser/NodeProcessor.php index <HASH>..<HASH> 100644 --- a/src/Bartlett/Reflect/PhpParser/NodeProcessor.php +++ b/src/Bartlett/Reflect/PhpParser/NodeProcessor.php @@ -33,7 +33,7 @@ interface NodeProcessor * * @return voi...
Force TypeHint constraint and simplify code
llaville_php-reflect
train
2a31759dcf793c13c290e19d8f8fb40e9d63f4ae
diff --git a/libkbfs/config_local.go b/libkbfs/config_local.go index <HASH>..<HASH> 100644 --- a/libkbfs/config_local.go +++ b/libkbfs/config_local.go @@ -1,6 +1,8 @@ package libkbfs import ( + "fmt" + "github.com/keybase/client/go/libkb" "github.com/keybase/client/go/logger" keybase1 "github.com/keybase/clie...
test_common: all FBOs must finish archiving before checking state Issue: KBFS-<I>
keybase_client
train
230d769a9755a0a0d43771349d1c12d63f8baf26
diff --git a/dist/piano.js b/dist/piano.js index <HASH>..<HASH> 100644 --- a/dist/piano.js +++ b/dist/piano.js @@ -39,7 +39,7 @@ var blackKeyMap = { }; var convertAccidental = function(keyName) { - return keyName.replace('s', '\u0023').replace('b', '\u266D'); + return keyName.replace('s', '#'); } var octa...
use simple chars for sharps and flats
musicjs_beautiful-piano
train
d312c30847c4755ad673939ee2801c372644fea6
diff --git a/pkg/api/validation/validation.go b/pkg/api/validation/validation.go index <HASH>..<HASH> 100644 --- a/pkg/api/validation/validation.go +++ b/pkg/api/validation/validation.go @@ -397,9 +397,9 @@ func validateSource(source *api.VolumeSource) errs.ValidationErrorList { return allErrs } -func validateHost...
fix the change of hostDir to hostPath
kubernetes_kubernetes
train
6ce9973341aa07c1ca5a7445b4e28f33907fc8ad
diff --git a/test/utils.py b/test/utils.py index <HASH>..<HASH> 100644 --- a/test/utils.py +++ b/test/utils.py @@ -1078,7 +1078,7 @@ class Vtctld(object): if python: from vtctl import grpc_vtctl_client rpc_port = self.grpc_port - return (protocol, 'localhost:%d' % rpc_port) + return (protoc...
Exporting internal changes back to open-source. NOTE: Changes were already LGTM'd internally.
vitessio_vitess
train
90b4ea2f3d98ab26f8996fd1e6f90f68bde2cbcd
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -106,7 +106,7 @@ module.exports = { }, included: function(){ - this._super.apply(this, arguments); + this._super.included.apply(this, arguments); // We cannot use ember-cli to import velocity as an AMD mod...
Fix `_super` in included hook
ember-animation_liquid-fire
train
409d8fad2b76035fd7651ea56bbad0fbe5f8561d
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -47,13 +47,15 @@ function normalizePaths(paths) { return objects; } -function findAll(patterns) { +function findAll(cwd, patterns) { // Glob patterns and normalize returned paths - return normalizePaths(glob.sync(patter...
Added ability to set `cwd`. Bumped minor version.
shannonmoeller_handlebars-wax
train
68cde93f09d6bea392f28f54e766db37bcdad84d
diff --git a/telemetry/telemetry/page/page.py b/telemetry/telemetry/page/page.py index <HASH>..<HASH> 100644 --- a/telemetry/telemetry/page/page.py +++ b/telemetry/telemetry/page/page.py @@ -23,10 +23,16 @@ class Page(object): self.credentials = None self.disabled = False self.wait_time_after_navigate = ...
[telemetry] Page set-level attributes. Page attributes cascade from page sets, with the page attribute having priority. This small change can eliminate most of the redundancy in the page sets. R=<EMAIL>,<EMAIL> BUG=None. TEST=None. Review URL: <URL>
catapult-project_catapult
train
c26bf0cdd4a91af05086878ebfd3554fdaf63d4f
diff --git a/src/components/DateRangePicker.js b/src/components/DateRangePicker.js index <HASH>..<HASH> 100644 --- a/src/components/DateRangePicker.js +++ b/src/components/DateRangePicker.js @@ -162,6 +162,7 @@ class DateRangePicker extends React.Component { return { currentDate: date, fo...
Set the selectedDefaultRange back to an empty string when selecting a date from the calendar (#<I>)
mxenabled_mx-react-components
train
3a94538af1f0c1d5c8f4ab87b504a64e4baac80b
diff --git a/src/redis_lock/__init__.py b/src/redis_lock/__init__.py index <HASH>..<HASH> 100644 --- a/src/redis_lock/__init__.py +++ b/src/redis_lock/__init__.py @@ -332,8 +332,6 @@ class Lock(object): * Use ``Lock("name", id=id_from_other_place).release()`` * Use ``Lock("name").reset()`` ...
Remove un-necessary check. Ref #<I>.
ionelmc_python-redis-lock
train
d67184bfd4bd241439a86cf3f9e9d975409b00ee
diff --git a/src/Sylius/Bundle/ResourceBundle/spec/Sylius/Bundle/ResourceBundle/Doctrine/ORM/EntityRepository.php b/src/Sylius/Bundle/ResourceBundle/spec/Sylius/Bundle/ResourceBundle/Doctrine/ORM/EntityRepository.php index <HASH>..<HASH> 100644 --- a/src/Sylius/Bundle/ResourceBundle/spec/Sylius/Bundle/ResourceBundle/Do...
Update spec, as we reverted the alias generation
Sylius_Sylius
train
9276c6fec314f1ad95f85cdccafbc14a3516ba82
diff --git a/packages/selenium-ide/src/neo/models/Command.js b/packages/selenium-ide/src/neo/models/Command.js index <HASH>..<HASH> 100644 --- a/packages/selenium-ide/src/neo/models/Command.js +++ b/packages/selenium-ide/src/neo/models/Command.js @@ -211,9 +211,9 @@ export const ArgTypes = { }, variableName: { ...
Updated reference copy for variable name description to make it clear what input is accepted (per #<I>).
SeleniumHQ_selenium-ide
train
c5bd2f942bdac98870c5fceab1baf6acedb21294
diff --git a/opengrid/library/regression.py b/opengrid/library/regression.py index <HASH>..<HASH> 100644 --- a/opengrid/library/regression.py +++ b/opengrid/library/regression.py @@ -477,48 +477,28 @@ class MultiVarLinReg(Analysis): and decompose it into a dictionary. This dictionary is stored in the list 'fo...
Remove all fits from a MultiVarLinReg object to allow pickling. They are restored during unpickling
opengridcc_opengrid
train
afa909d32f6b5fa1017fe92533bf38d348a401a0
diff --git a/coordination/src/main/java/io/atomix/coordination/state/LeaderElectionState.java b/coordination/src/main/java/io/atomix/coordination/state/LeaderElectionState.java index <HASH>..<HASH> 100644 --- a/coordination/src/main/java/io/atomix/coordination/state/LeaderElectionState.java +++ b/coordination/src/main/...
Clean up leader election state machine to ensure commits are properly cleaned.
atomix_atomix
train
e7a0322f4f2298c7faf13ac88460403afe129779
diff --git a/interop/src/test/java/zipkin/cassandra/CassandraTestGraph.java b/interop/src/test/java/zipkin/cassandra/CassandraTestGraph.java index <HASH>..<HASH> 100644 --- a/interop/src/test/java/zipkin/cassandra/CassandraTestGraph.java +++ b/interop/src/test/java/zipkin/cassandra/CassandraTestGraph.java @@ -26,13 +26...
Skip faster when test dependencies are missing By caching an exception attempting to connect to storage, tests skip <I> minutes faster!
apache_incubator-zipkin
train
dfbb5d61e6ea9608469a102856688dc16085a31f
diff --git a/spec/unit/multi_select_spec.rb b/spec/unit/multi_select_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/multi_select_spec.rb +++ b/spec/unit/multi_select_spec.rb @@ -3,6 +3,24 @@ RSpec.describe TTY::Prompt do let(:symbols) { TTY::Prompt::Symbols.symbols } + def output_helper(prompt, choices, act...
Add specs for mutli_select
piotrmurach_tty-prompt
train
5899175be1c18e470d20d0a049b35c9b57452869
diff --git a/h2o-algos/src/main/java/hex/DataInfo.java b/h2o-algos/src/main/java/hex/DataInfo.java index <HASH>..<HASH> 100644 --- a/h2o-algos/src/main/java/hex/DataInfo.java +++ b/h2o-algos/src/main/java/hex/DataInfo.java @@ -440,6 +440,8 @@ public class DataInfo extends Keyed<DataInfo> { res._fold = false; ...
null check for isInteractionVec
h2oai_h2o-3
train
48bd04b83a2c957c869ac5a134ab7c6cdb82cc32
diff --git a/uportal-impl/src/main/java/org/jasig/portal/ChannelManager.java b/uportal-impl/src/main/java/org/jasig/portal/ChannelManager.java index <HASH>..<HASH> 100644 --- a/uportal-impl/src/main/java/org/jasig/portal/ChannelManager.java +++ b/uportal-impl/src/main/java/org/jasig/portal/ChannelManager.java @@ -1021,...
UP-<I> Check for a null originalChannel before checking if it does not equal the channel to act on, happens when first request is an action git-svn-id: <URL>
Jasig_uPortal
train
6f1fdb09a296763da231350a85ae4d09bfe4a08c
diff --git a/core/src/main/java/com/google/errorprone/bugpatterns/InjectAssistedInjectAndInjectOnConstructors.java b/core/src/main/java/com/google/errorprone/bugpatterns/InjectAssistedInjectAndInjectOnConstructors.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/google/errorprone/bugpatterns/InjectAssisted...
added suppression test, removed prefix from suppression string, other nits
google_error-prone
train
cded040cb6211b113289d06b880c2a7fd5ee5b7d
diff --git a/elem/elem.gen.go b/elem/elem.gen.go index <HASH>..<HASH> 100644 --- a/elem/elem.gen.go +++ b/elem/elem.gen.go @@ -334,7 +334,7 @@ func Form(markup ...vecty.MarkupOrComponentOrHTML) *vecty.HTML { // is the highest section level and <h6> is the lowest. // // https://developer.mozilla.org/en-US/docs/Web/HT...
elem: Rename h1-h6 elements from Header to Heading. Update todomvc example to use new name. Fixes #<I>.
gopherjs_vecty
train
07522152c3db280e23f4064cf45103689baf3a34
diff --git a/stage0/run.go b/stage0/run.go index <HASH>..<HASH> 100644 --- a/stage0/run.go +++ b/stage0/run.go @@ -41,6 +41,7 @@ import ( "github.com/coreos/rkt/common" "github.com/coreos/rkt/common/apps" "github.com/coreos/rkt/pkg/aci" + "github.com/coreos/rkt/pkg/fileutil" "github.com/coreos/rkt/pkg/sys" "g...
stage0: copy stage1 image from tree cache instead of extracting it Since we render the stage1 image anyway, if we don't use overlay fs, we copy its rootfs from the tree cache instead of extracting it every single time.
rkt_rkt
train
fb6c657bdc4f87dfda2bf83f15c5f487b78ccabd
diff --git a/lib/ice_cube/validations/hour_of_day.rb b/lib/ice_cube/validations/hour_of_day.rb index <HASH>..<HASH> 100644 --- a/lib/ice_cube/validations/hour_of_day.rb +++ b/lib/ice_cube/validations/hour_of_day.rb @@ -23,7 +23,7 @@ module IceCube first_hour = Array(validations[:hour_of_day]).min_by(&:value) ...
Fix offset bug when day of start_time does not align with specified day rule (#<I>) This combination needs to apply the right offset for advancing to the first occurrence: - Weekly with frequency > 1 (biweekly, etc.) - with a weekday validation (e.g. Saturday) - declared as starting on a different weekday (e.g. F...
seejohnrun_ice_cube
train
170442069713792a98f2b0fa543ff76e0d8ff840
diff --git a/pyrogram/types/bots_and_keyboards/callback_query.py b/pyrogram/types/bots_and_keyboards/callback_query.py index <HASH>..<HASH> 100644 --- a/pyrogram/types/bots_and_keyboards/callback_query.py +++ b/pyrogram/types/bots_and_keyboards/callback_query.py @@ -252,7 +252,7 @@ class CallbackQuery(Object, Update): ...
Fix wrongly passed positional arguments (#<I>) Since CallbackQuery.edit_message_text takes 4 arguments and CallbackQuery.edit_message_caption only 3, the reply_markup ends up to be the disable_web_page_preview one. Resolve this by specifying the argument name
pyrogram_pyrogram
train
cb96183df287a3bb27fb02527ca1f626a7b09824
diff --git a/bundles/org.eclipse.orion.client.core/web/orion/nlsutil.js b/bundles/org.eclipse.orion.client.core/web/orion/nlsutil.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.core/web/orion/nlsutil.js +++ b/bundles/org.eclipse.orion.client.core/web/orion/nlsutil.js @@ -13,7 +13,7 @@ define([], ...
Bug <I> -Orion client nls bundles format cannot be consumed by Babel - remove HEAD method
eclipse_orion.client
train
e57d866ded7ca25c630d3ef697c9f9ca9c38586c
diff --git a/PlugIns/Camera/CameraHardwareSource.py b/PlugIns/Camera/CameraHardwareSource.py index <HASH>..<HASH> 100644 --- a/PlugIns/Camera/CameraHardwareSource.py +++ b/PlugIns/Camera/CameraHardwareSource.py @@ -285,12 +285,14 @@ class CameraFrameParameters(object): self.exposure_ms = d.get("exposure_ms", 1...
Add integration count to frame parameters and support in camera hardware source. Was svn r<I>
nion-software_nionswift-instrumentation-kit
train
2a9a2aa049d8685c2815311df6e1d29c9b5de5f1
diff --git a/franz/rabbitmq/consumer.py b/franz/rabbitmq/consumer.py index <HASH>..<HASH> 100644 --- a/franz/rabbitmq/consumer.py +++ b/franz/rabbitmq/consumer.py @@ -91,12 +91,17 @@ class Consumer: properties.correlation_id, self._queue_name, ) + + for handler ...
remove before re-setting the config
carta_franz
train
be931f1b403cb7a71428dab49f1ccd8060c8bcf4
diff --git a/ELiDE/ELiDE/board/board.py b/ELiDE/ELiDE/board/board.py index <HASH>..<HASH> 100644 --- a/ELiDE/ELiDE/board/board.py +++ b/ELiDE/ELiDE/board/board.py @@ -129,6 +129,8 @@ class Board(RelativeLayout): return if not self.collide_point(*touch.pos): return + touch.push(...
Apply local transform to Board touches I'm not sure why this didn't cause trouble before.
LogicalDash_LiSE
train
ec32294a3daa97457ad83399f56218bf4fced04d
diff --git a/examples/example_minimum.php b/examples/example_minimum.php index <HASH>..<HASH> 100644 --- a/examples/example_minimum.php +++ b/examples/example_minimum.php @@ -34,24 +34,23 @@ //Image title and link must match with the 'title' and 'link' channel elements for valid RSS 2.0 $TestFeed->setImage('Test...
Don't use a (actually not working) database for retrieving item information. The minimal example should have minimal requirements...
mibe_FeedWriter
train
ea7f239028a04aca3f92e30b0adefd9e81e31361
diff --git a/host-controller/src/main/java/org/jboss/as/host/controller/mgmt/MasterDomainControllerOperationHandlerImpl.java b/host-controller/src/main/java/org/jboss/as/host/controller/mgmt/MasterDomainControllerOperationHandlerImpl.java index <HASH>..<HASH> 100644 --- a/host-controller/src/main/java/org/jboss/as/host...
AS7-<I> - Fix distributed deploy for Windows DC This patch fixes problem when you have Windows DC and Linux HC File path had \ in name and that failed deployment
wildfly_wildfly
train
8761e6e06e06593ad5a8712c5ff43aa3ac8c5a16
diff --git a/indra/tools/reading/submit_reading_pipeline_aws.py b/indra/tools/reading/submit_reading_pipeline_aws.py index <HASH>..<HASH> 100644 --- a/indra/tools/reading/submit_reading_pipeline_aws.py +++ b/indra/tools/reading/submit_reading_pipeline_aws.py @@ -1,5 +1,13 @@ from __future__ import absolute_import, pri...
Move imports so submit can be called from outside
sorgerlab_indra
train
64ea6f22ef41dc3769670a35b5ab84f21be953ae
diff --git a/example.js b/example.js index <HASH>..<HASH> 100644 --- a/example.js +++ b/example.js @@ -13,7 +13,7 @@ import createLogger from 'redux-logger' // Auth0 import { Auth0Provider } from 'use-auth0-hooks' import { accountLinks, getAuth0Callbacks, getAuth0Config } from './lib/util/auth' -import { AUTH0_SCOPE...
fix(redirect, verify email): Add redirect URL_ROOT, add nav to verify email.
opentripplanner_otp-react-redux
train
8fee1e3dc0a5e053afe69bbac7a631a95de5aef7
diff --git a/src/main/java/org/ops4j/io/StreamUtils.java b/src/main/java/org/ops4j/io/StreamUtils.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/ops4j/io/StreamUtils.java +++ b/src/main/java/org/ops4j/io/StreamUtils.java @@ -18,15 +18,20 @@ package org.ops4j.io; -import org.ops4j.lang.NullArgumentExcepti...
Added in StreamUtils support for Reader/Writer copy operations. git-svn-id: <URL>
ops4j_org.ops4j.base
train
ba6c034e5b66f385d1a1efd2b427765645b6c2a3
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -14,11 +14,12 @@ import os +import codecs from setuptools import setup, find_packages def read(*rnames): - return open(os.path.join(os.path.dirname(__file__), *rnames)).read() + return codecs.open(os.path.join...
Fix utf8 file input in setup.py
knaperek_djangosaml2
train
5f076c7129c8d658234e31f17db42f9a30013bd3
diff --git a/firetv/__init__.py b/firetv/__init__.py index <HASH>..<HASH> 100644 --- a/firetv/__init__.py +++ b/firetv/__init__.py @@ -33,8 +33,7 @@ WINDOW_REGEX = re.compile(r"Window\{(?P<id>.+?) (?P<user>.+) (?P<package>.+?)(?: SCREEN_ON_CMD = r"dumpsys power | grep 'Display Power' | grep -q 'state=ON'" AWAKE_CMD =...
Improve 'audio_state' property
happyleavesaoc_python-firetv
train
8eb98614b78dab2ce0c20bde3d79e0dbf4262e79
diff --git a/tests/llist_test.py b/tests/llist_test.py index <HASH>..<HASH> 100644 --- a/tests/llist_test.py +++ b/tests/llist_test.py @@ -255,6 +255,17 @@ class testDLList(unittest.TestCase): del ll[0] self.assertEqual(len(ll), 0) + def test_list_readonly_attributes(self): + ll = DLLi...
Added tests for read-only attributes
ajakubek_python-llist
train
1a9144034cc02e50ff69886a592c082366e5b088
diff --git a/src/jquery.smooth-scroll.js b/src/jquery.smooth-scroll.js index <HASH>..<HASH> 100644 --- a/src/jquery.smooth-scroll.js +++ b/src/jquery.smooth-scroll.js @@ -145,6 +145,7 @@ $.fn.extend({ scrollTarget: thisOpts.scrollTarget || thisHash, link: link }); + $.smoothScrol...
Avoid "Cannot call method 'replace' of undefined" error
kswedberg_jquery-smooth-scroll
train
4de2194fe33c82fa43d19d1e80c0487940a3a85f
diff --git a/test-support/page-object/queries/text.js b/test-support/page-object/queries/text.js index <HASH>..<HASH> 100644 --- a/test-support/page-object/queries/text.js +++ b/test-support/page-object/queries/text.js @@ -51,6 +51,22 @@ import { findElementWithAssert, map, normalizeText } from '../helpers'; * // ret...
Add option to avoid text normalization Use arrow functions Add comments
san650_ember-cli-page-object
train
0c6676d4360e33033cc19d6c8c69fdf07187693e
diff --git a/assess_add_cloud.py b/assess_add_cloud.py index <HASH>..<HASH> 100755 --- a/assess_add_cloud.py +++ b/assess_add_cloud.py @@ -103,14 +103,23 @@ def iter_clouds(clouds): yield cloud_spec('bogus-type', 'bogus-type', {'type': 'bogus'}, exception=TypeNotAccepted) for cloud_name,...
Update with expected endpoint failures for manual.
juju_juju
train
8411535bc4e01a4451ac0d1205670a93c9a63b1e
diff --git a/Swat/SwatXMLRPCServer.php b/Swat/SwatXMLRPCServer.php index <HASH>..<HASH> 100644 --- a/Swat/SwatXMLRPCServer.php +++ b/Swat/SwatXMLRPCServer.php @@ -6,6 +6,12 @@ require_once 'XML/RPC2/Server.php'; /** * Base class for an XML-RPC Server * + * The XML-RPC server acts as a regular page in an applicatio...
More documentation. svn commit r<I>
silverorange_swat
train
c7c7268f34c08d9dfe7c085eca5f8a8b57736eab
diff --git a/IfcPlugins/src/org/bimserver/ifc/step/deserializer/IfcStepStreamingDeserializer.java b/IfcPlugins/src/org/bimserver/ifc/step/deserializer/IfcStepStreamingDeserializer.java index <HASH>..<HASH> 100644 --- a/IfcPlugins/src/org/bimserver/ifc/step/deserializer/IfcStepStreamingDeserializer.java +++ b/IfcPlugins...
Added experimental GUID conversion for GUIDs not defined according to IFC standard (but still valid UUID)
opensourceBIM_IfcPlugins
train
0ae3b0690077088e625824cf94305c26ce5aafb2
diff --git a/addok/helpers/search.py b/addok/helpers/search.py index <HASH>..<HASH> 100644 --- a/addok/helpers/search.py +++ b/addok/helpers/search.py @@ -1,10 +1,10 @@ from math import ceil +from addok.config import config from addok.helpers import iter_pipe def preprocess_query(s): - from addok.config imp...
No need to load the config at runtime now
addok_addok
train
c4a98145a020df4ff00f0dcc728effdb3626da92
diff --git a/docroot/modules/custom/ymca_blog_listing/src/Controller/YMCANewsEventsPageController.php b/docroot/modules/custom/ymca_blog_listing/src/Controller/YMCANewsEventsPageController.php index <HASH>..<HASH> 100644 --- a/docroot/modules/custom/ymca_blog_listing/src/Controller/YMCANewsEventsPageController.php +++ ...
[YMCA-<I>] replace blog listing with new logic
ymcatwincities_openy
train
bc2a57b8a3a5efd69eb26f833a61ab0ba317621a
diff --git a/app/models/manager_refresh/inventory/persister.rb b/app/models/manager_refresh/inventory/persister.rb index <HASH>..<HASH> 100644 --- a/app/models/manager_refresh/inventory/persister.rb +++ b/app/models/manager_refresh/inventory/persister.rb @@ -24,6 +24,25 @@ class ManagerRefresh::Inventory::Persister ...
Dynamic access of collections with Rails like method cache Dynamic access of collections with Rails like method cache, first pass goes through methods missing and looks into collections hash by creating a getter metho. So second+ pass is much faster. (transferred from ManageIQ/manageiq@c<I>f2d0b2ec<I>fa<I>cd<I>c6ca6...
ManageIQ_inventory_refresh
train
c0d843ceb39be5025e95ec064ef0b35c405f97a9
diff --git a/spec/mail/network/retriever_methods/pop3_spec.rb b/spec/mail/network/retriever_methods/pop3_spec.rb index <HASH>..<HASH> 100644 --- a/spec/mail/network/retriever_methods/pop3_spec.rb +++ b/spec/mail/network/retriever_methods/pop3_spec.rb @@ -77,6 +77,21 @@ describe "POP3 Retriever" do messag...
Add specs for :delete_after_find option to the find method and the find_and_delete method itself
mikel_mail
train
e291587027b16ffd7fb0e5bdd6bf203e8ed2620f
diff --git a/doc/man_docs.go b/doc/man_docs.go index <HASH>..<HASH> 100644 --- a/doc/man_docs.go +++ b/doc/man_docs.go @@ -34,6 +34,17 @@ import ( // subcmds, `sub` and `sub-third`. And `sub` has a subcommand called `third` // it is undefined which help output will be in the file `cmd-sub-third.1`. func GenManTree(c...
Cretea a new GenManTree function that takes an options struct.
spf13_cobra
train
04bd1ea72c1334c204762cea66589f2647e803b3
diff --git a/code/libraries/koowa/components/com_koowa/template/helper/paginator.php b/code/libraries/koowa/components/com_koowa/template/helper/paginator.php index <HASH>..<HASH> 100644 --- a/code/libraries/koowa/components/com_koowa/template/helper/paginator.php +++ b/code/libraries/koowa/components/com_koowa/templat...
re #<I>: Continue taking out KRequest
timble_kodekit
train
c31fec783cb9f19904fe7d0b53a0e5637f2acb8b
diff --git a/OnBoarding/OnBoarding.php b/OnBoarding/OnBoarding.php index <HASH>..<HASH> 100644 --- a/OnBoarding/OnBoarding.php +++ b/OnBoarding/OnBoarding.php @@ -28,6 +28,9 @@ namespace OnBoarding; use Shudrum\Component\ArrayFinder\ArrayFinder; use Symfony\Component\Yaml\Yaml; +use Configuration; +use Twig_Environ...
[*] Twig is now correctly injected And the configuration folder is also a parameter.
PrestaShop_welcome
train
55d1b7f4a87f1fd674bb3015d9d5868a77275418
diff --git a/chef/lib/chef/resource.rb b/chef/lib/chef/resource.rb index <HASH>..<HASH> 100644 --- a/chef/lib/chef/resource.rb +++ b/chef/lib/chef/resource.rb @@ -50,20 +50,22 @@ class Chef raise Chef::Exceptions::InvalidResourceReference, msg end self.resource = matching_resource - re...
improve error message clarity for notify lazy references when an error is raised when resolving a lazy reference for a notification, rewrite it with an informative message and context
chef_chef
train
7147fd37cd0743210306aed10cfa74d98e3179fe
diff --git a/src/main/java/org/whitesource/agent/dependency/resolver/ruby/RubyDependencyResolver.java b/src/main/java/org/whitesource/agent/dependency/resolver/ruby/RubyDependencyResolver.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/whitesource/agent/dependency/resolver/ruby/RubyDependencyResolver.java +++ ...
Add Ruby source files to manifests list
whitesource_fs-agent
train
21408212dafc1b37e2f2d51a4c4afbcc9cef403b
diff --git a/modules/caddyhttp/replacer.go b/modules/caddyhttp/replacer.go index <HASH>..<HASH> 100644 --- a/modules/caddyhttp/replacer.go +++ b/modules/caddyhttp/replacer.go @@ -105,7 +105,7 @@ func addHTTPVarsToReplacer(repl caddy.Replacer, req *http.Request, w http.Respon case "http.request.uri.query": retu...
http: query and query_string placeholders should use RawQuery, probably
mholt_caddy
train
d832f0d15791fc951f55d30ce13c20d5dc9e89c3
diff --git a/lib/xpay/payment.rb b/lib/xpay/payment.rb index <HASH>..<HASH> 100644 --- a/lib/xpay/payment.rb +++ b/lib/xpay/payment.rb @@ -86,19 +86,19 @@ module Xpay pares = threedsecure.add_element("PaRes") pares.text = "" @response_xml = process() - rt = REXM...
removed storing in instanve variable because value can change during process
vpacher_xpay
train