hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
e9f6de948faa412bae204910231c7a11055d202e
diff --git a/quark/ipam.py b/quark/ipam.py index <HASH>..<HASH> 100644 --- a/quark/ipam.py +++ b/quark/ipam.py @@ -53,6 +53,7 @@ class QuarkIpam(object): def allocate_ip_address(self, session, net_id, port_id): address = session.query(models.IPAddress).\ filter(models.IPAddress....
Fixed allocation to not use freed ports
openstack_quark
train
5a03e83ceba8ab69fe8a180fa40e5686f3d97230
diff --git a/mungegithub/mungers/submit-queue-batch.go b/mungegithub/mungers/submit-queue-batch.go index <HASH>..<HASH> 100644 --- a/mungegithub/mungers/submit-queue-batch.go +++ b/mungegithub/mungers/submit-queue-batch.go @@ -267,9 +267,9 @@ func (sq *SubmitQueue) batchIsApplicable(batch Batch) (int, error) { func (s...
fix nit-refactor of prow url var in submit-queue-batch.go
kubernetes_test-infra
train
faa664df8116ad8fd5570aac4561b8ed61886577
diff --git a/pysos/sos_script.py b/pysos/sos_script.py index <HASH>..<HASH> 100755 --- a/pysos/sos_script.py +++ b/pysos/sos_script.py @@ -402,6 +402,10 @@ def directive_output(*args, **kwargs): # if 'pattern' in kwargs: handle_output_pattern(kwargs['pattern'], ofiles) + for ofile in ofiles: + ...
Create output directory earlier to accomodate non-step process statements
vatlab_SoS
train
a31f3491ca25db50b5a253b30fee2ade2ae6bd9f
diff --git a/lib/Threading/Thread.php b/lib/Threading/Thread.php index <HASH>..<HASH> 100644 --- a/lib/Threading/Thread.php +++ b/lib/Threading/Thread.php @@ -143,19 +143,21 @@ class Thread implements Strand { list($channel, $this->socket) = $sockets; - $this->thread = $thread = new Internal\Thread(...
Only check for exit when receiving, fixes #9
amphp_parallel
train
e684baf3508857890e82fee99629b43c8ec46414
diff --git a/js/core/Component.js b/js/core/Component.js index <HASH>..<HASH> 100644 --- a/js/core/Component.js +++ b/js/core/Component.js @@ -35,6 +35,7 @@ define(["require", "js/core/Element", "js/core/TextElement", "js/core/Bindable", this.$xamlAttributes = this._getAttributesFromDescriptor(...
added xaml notation for non DOM event handlers
rappid_rAppid.js
train
48ffeaac2e392badf0eb9e7df62baa5e89148a73
diff --git a/structr-modules/structr-api-builder-module/src/main/java/org/structr/flow/deployment/FlowTreeDeploymentHandler.java b/structr-modules/structr-api-builder-module/src/main/java/org/structr/flow/deployment/FlowTreeDeploymentHandler.java index <HASH>..<HASH> 100644 --- a/structr-modules/structr-api-builder-mod...
Implements blacklist for flow rel types during export.
structr_structr
train
8cc94fba5050981338b0908488c54e69cbe4c0a8
diff --git a/dyno-core/src/main/java/com/netflix/dyno/connectionpool/impl/ConnectionPoolConfigurationImpl.java b/dyno-core/src/main/java/com/netflix/dyno/connectionpool/impl/ConnectionPoolConfigurationImpl.java index <HASH>..<HASH> 100644 --- a/dyno-core/src/main/java/com/netflix/dyno/connectionpool/impl/ConnectionPool...
Modified failOnStartupIfNoHosts property so that the default value is true (instead of false).
Netflix_dyno
train
0699c75030c93721e284903c2cae9591ce38f041
diff --git a/src/LeanOrm/Model/Collection.php b/src/LeanOrm/Model/Collection.php index <HASH>..<HASH> 100644 --- a/src/LeanOrm/Model/Collection.php +++ b/src/LeanOrm/Model/Collection.php @@ -21,16 +21,26 @@ class Collection extends \GDAO\Model\Collection } public function deleteAll() { - - ...
Re-implemented delete all in the collection to be more efficient.
rotexsoft_leanorm
train
3d7410bb5ead316179c95da8c379e21fd9f16015
diff --git a/lib/Doctrine/CouchDB/HTTP/SocketClient.php b/lib/Doctrine/CouchDB/HTTP/SocketClient.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/CouchDB/HTTP/SocketClient.php +++ b/lib/Doctrine/CouchDB/HTTP/SocketClient.php @@ -100,7 +100,7 @@ class SocketClient extends AbstractHTTPClient { $re...
Fixed wrong line ending in SocketClient for CouchDB <I>
doctrine_couchdb-odm
train
42d9d673f0de4bf1b607a6aeef8846046e8f065c
diff --git a/lib/data_mapper.rb b/lib/data_mapper.rb index <HASH>..<HASH> 100644 --- a/lib/data_mapper.rb +++ b/lib/data_mapper.rb @@ -111,4 +111,8 @@ module DataMapper def self.auto_migrate!(name = :default) repository(name).auto_migrate! end + + def self.prepare(name = nil, &blk) + yield repository(n...
Added Repository#type_map & Repository#map. Added DataMapper#prepare
datamapper_dm-core
train
d2f78ae41346ef60823e8640ba697afdb89aea20
diff --git a/lib/rapns/daemon/delivery_handler.rb b/lib/rapns/daemon/delivery_handler.rb index <HASH>..<HASH> 100644 --- a/lib/rapns/daemon/delivery_handler.rb +++ b/lib/rapns/daemon/delivery_handler.rb @@ -37,7 +37,6 @@ module Rapns begin deliver(notification) - reflect(:notification_del...
Remove duplicate call to notification_delivered reflection. Fixes #<I>.
ileitch_rapns
train
e56d8c8982461b407876dda913d2fa57548621a3
diff --git a/aegea/ssh.py b/aegea/ssh.py index <HASH>..<HASH> 100644 --- a/aegea/ssh.py +++ b/aegea/ssh.py @@ -186,7 +186,7 @@ def scp(args): """ Transfer files to or from EC2 instance. """ - scp_opts = extract_passthrough_opts(args, "scp") + scp_opts, host_opts = extract_passthrough_opts(args, "sc...
aegea scp: Do not crash if no colon is found
kislyuk_aegea
train
591ed4b39167daea0eaceca7cf7d79802fd47bd1
diff --git a/gidgethub/test/test_aiohttp.py b/gidgethub/test/test_aiohttp.py index <HASH>..<HASH> 100644 --- a/gidgethub/test/test_aiohttp.py +++ b/gidgethub/test/test_aiohttp.py @@ -7,12 +7,6 @@ from .. import aiohttp as gh_aiohttp from .. import sansio -async def call_aiohttp(what, *args, **kwargs): - async w...
Delete call_aiohttp() (#8)
brettcannon_gidgethub
train
75a193d1dd81bd246c86d05491441ee3b6d80104
diff --git a/lib/eye/dsl/validation.rb b/lib/eye/dsl/validation.rb index <HASH>..<HASH> 100644 --- a/lib/eye/dsl/validation.rb +++ b/lib/eye/dsl/validation.rb @@ -39,7 +39,9 @@ module Eye::Dsl::Validation end if self.variants[param] - raise Error, "#{value.inspect} should within #{self.variants[p...
# not checking proc with params list
kostya_eye
train
6b3cac04fa08293dec03fadaec4d307cd63878f8
diff --git a/lib/loader/loader.rb b/lib/loader/loader.rb index <HASH>..<HASH> 100644 --- a/lib/loader/loader.rb +++ b/lib/loader/loader.rb @@ -33,7 +33,7 @@ module Myreplicator metadata.each do |m| if m.export_type == "initial" - + Kernel.p m initials << m # Add initial to the list...
loader tested with new concurrent loads, parallelizer modified on exits to not depend on the thread. Transporter bug fixed, clean ups happen on both transporter and loader
Raybeam_myreplicator
train
b1c479c0f7df8bdcd050f51067073c4cec121a5c
diff --git a/tests/test_wsaa_crypto.py b/tests/test_wsaa_crypto.py index <HASH>..<HASH> 100644 --- a/tests/test_wsaa_crypto.py +++ b/tests/test_wsaa_crypto.py @@ -1,5 +1,7 @@ import base64, subprocess +from past.builtins import basestring + from pyafipws.wsaa import WSAA @@ -9,7 +11,7 @@ def test_wsfev1_create_...
WSAA: fix TRA test expecting unicode in python2
reingart_pyafipws
train
d40c6222861d5cdff3100faf04c7c325118be743
diff --git a/spyderlib/widgets/externalshell/sitecustomize.py b/spyderlib/widgets/externalshell/sitecustomize.py index <HASH>..<HASH> 100644 --- a/spyderlib/widgets/externalshell/sitecustomize.py +++ b/spyderlib/widgets/externalshell/sitecustomize.py @@ -85,7 +85,8 @@ except ImportError: basestring = (str,) ...
Consoles: Correctly close a file when executing it on Python 3 Fixes #<I>
spyder-ide_spyder
train
30954fe9e5fa31aa84f03e66a570afbde9c83b5b
diff --git a/test/aggregate_tests.rb b/test/aggregate_tests.rb index <HASH>..<HASH> 100644 --- a/test/aggregate_tests.rb +++ b/test/aggregate_tests.rb @@ -25,7 +25,7 @@ class TestSensuAggregate < TestCase assert_equal('check_http', body.first[:check]) assert(body.first[:issued].is_a?(Array)) ...
[aggregates] added results to aggregate test
sensu_sensu
train
9a94293b591fcfb629cac6bb36d424361671562b
diff --git a/go/kbfs/libkbfs/conflict_resolver.go b/go/kbfs/libkbfs/conflict_resolver.go index <HASH>..<HASH> 100644 --- a/go/kbfs/libkbfs/conflict_resolver.go +++ b/go/kbfs/libkbfs/conflict_resolver.go @@ -7,6 +7,7 @@ package libkbfs import ( "encoding/json" "fmt" + "io/ioutil" "os" sysPath "path" "runtime/...
cr: use a disk-based dirty bcache Issue: KBFS-<I>
keybase_client
train
dd6d2243b34fd05e6ade789a3adad2e51394d90b
diff --git a/example/idp2/idp.py b/example/idp2/idp.py index <HASH>..<HASH> 100755 --- a/example/idp2/idp.py +++ b/example/idp2/idp.py @@ -831,7 +831,7 @@ def info_from_cookie(kaka): try: key, ref = base64.b64decode(morsel.value).split(":") return IDP.cache.uid2user[key], ...
Handle b<I>decode exception. Proposed by Seth Arnold.
IdentityPython_pysaml2
train
20d880a88fdddc6efd586b55fe9926aa07a215a7
diff --git a/lib-dempsyapi/src/main/java/com/nokia/dempsy/annotations/Output.java b/lib-dempsyapi/src/main/java/com/nokia/dempsy/annotations/Output.java index <HASH>..<HASH> 100644 --- a/lib-dempsyapi/src/main/java/com/nokia/dempsy/annotations/Output.java +++ b/lib-dempsyapi/src/main/java/com/nokia/dempsy/annotations/O...
Make @Output also use @Inherited as well
Dempsy_dempsy
train
fefe791600ece44c118ff577984facc54daae791
diff --git a/lib/ood_core/job/adapters/torque.rb b/lib/ood_core/job/adapters/torque.rb index <HASH>..<HASH> 100644 --- a/lib/ood_core/job/adapters/torque.rb +++ b/lib/ood_core/job/adapters/torque.rb @@ -201,7 +201,12 @@ module OodCore # @see Adapter#info def info(id) id = id.to_s - ...
Update Torque Adapter to better report the status of array jobs
OSC_ood_core
train
0f622de27c96df54a7498dd59962c7985bb072c4
diff --git a/pipreqs/mapping b/pipreqs/mapping index <HASH>..<HASH> 100644 --- a/pipreqs/mapping +++ b/pipreqs/mapping @@ -261,6 +261,7 @@ socketio:gevent_socketio socketserver:pies2overrides sockjs:sockjs_tornado socks:SocksiPy_branch +IPython:ipython solr:solrpy solution:Solution sorl:sorl_thumbnail diff --git ...
fix(pipreqs): ignore word "import" in package names
bndr_pipreqs
train
b86bad2bf9f01fdd19067f5b69254aa237f80ca2
diff --git a/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/DiscreteAlphaIndexColorModel.java b/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/DiscreteAlphaIndexColorModel.java index <HASH>..<HASH> 100644 --- a/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/Di...
Equals method for DiscreteAlphaIndexColorModel, needed for Java <I>.
haraldk_TwelveMonkeys
train
48d9c1bf76208013b7ee668b2e34586e335651a4
diff --git a/pypot/sensor/imagefeature/marker.py b/pypot/sensor/imagefeature/marker.py index <HASH>..<HASH> 100644 --- a/pypot/sensor/imagefeature/marker.py +++ b/pypot/sensor/imagefeature/marker.py @@ -1,3 +1,5 @@ +from multiprocessing import Process, Queue + from hampy import detect_markers from ...robot.controll...
Add the possibility to detect markers in another process.
poppy-project_pypot
train
bf04e3d2f6cba980e19df38eda9118a7d2cedd93
diff --git a/pgjdbc/src/main/java/org/postgresql/core/v3/ConnectionFactoryImpl.java b/pgjdbc/src/main/java/org/postgresql/core/v3/ConnectionFactoryImpl.java index <HASH>..<HASH> 100644 --- a/pgjdbc/src/main/java/org/postgresql/core/v3/ConnectionFactoryImpl.java +++ b/pgjdbc/src/main/java/org/postgresql/core/v3/Connecti...
refactor: Use multi-catch for exceptions in ConnectionFactoryImpl
pgjdbc_pgjdbc
train
66d20b30d03185fa1d0002254438d1284ddf4200
diff --git a/codegen/src/test/java/org/web3j/codegen/SolidityFunctionWrapperGeneratorTest.java b/codegen/src/test/java/org/web3j/codegen/SolidityFunctionWrapperGeneratorTest.java index <HASH>..<HASH> 100644 --- a/codegen/src/test/java/org/web3j/codegen/SolidityFunctionWrapperGeneratorTest.java +++ b/codegen/src/test/ja...
Renamed greeter to Greeter to be consistent with the other contracts
web3j_web3j
train
181b820da60fd67647291d491b86b393f5b9f069
diff --git a/lib/album.js b/lib/album.js index <HASH>..<HASH> 100644 --- a/lib/album.js +++ b/lib/album.js @@ -4,3 +4,7 @@ function Album(album, _wimp){ this._wimp = _wimp; _.merge(this, album); } +Album.prototype.getTracks = function(fn){ + var wimp = this._wimp; + return wimp.getAlbumTracks(this.id, fn); +}; dif...
Rename getTracks to getAlbumTracks and add getPlaylistTracks For those who dislike OOP
datagutt_WiMP-api
train
f7fcfe0f6839944861d99ff5bb8d74f6c18fa5c7
diff --git a/test/mock.py b/test/mock.py index <HASH>..<HASH> 100644 --- a/test/mock.py +++ b/test/mock.py @@ -17,7 +17,7 @@ # specific language governing permissions and limitations # under the License. from zopkio.deployer import Deployer, Process - +from zopkio import runtime class Mock_Deployer(Deployer): ...
Added resets to clear globals causing test conflicts across tests
linkedin_Zopkio
train
d99641f31e64d63623c7cf58d4355dccea7e80d0
diff --git a/cmd/init.go b/cmd/init.go index <HASH>..<HASH> 100644 --- a/cmd/init.go +++ b/cmd/init.go @@ -40,7 +40,7 @@ func newInitCmd() *initCmd { return err } defer gitignore.Close() - if _, err := gitignore.WriteString("dist/\n"); err != nil { + if _, err := gitignore.WriteString("\ndist/\n"); err...
fix: gitignore patching needs leading newline (#<I>)
goreleaser_goreleaser
train
4e4bcb4c6b08ed392cd5576dcfc252ef574a1b88
diff --git a/activesupport/lib/active_support/multibyte/chars.rb b/activesupport/lib/active_support/multibyte/chars.rb index <HASH>..<HASH> 100644 --- a/activesupport/lib/active_support/multibyte/chars.rb +++ b/activesupport/lib/active_support/multibyte/chars.rb @@ -40,13 +40,15 @@ module ActiveSupport::Multibyte #:nod...
Ruby <I> compat: TimeWithZone# and Chars#respond_to? pass along the include_private argument
rails_rails
train
80e18404141a21a509d9c33b16f8abc95e56c9d2
diff --git a/test/tools/javac/processing/model/type/IntersectionPropertiesTest.java b/test/tools/javac/processing/model/type/IntersectionPropertiesTest.java index <HASH>..<HASH> 100644 --- a/test/tools/javac/processing/model/type/IntersectionPropertiesTest.java +++ b/test/tools/javac/processing/model/type/IntersectionP...
<I>: test needs bugID added to @bug tag Summary: Adding forgotten bug number Reviewed-by: vromero
wmdietl_jsr308-langtools
train
0e6a34c7064784eda6a0de174ffcfc87ae0ced08
diff --git a/ballet/validation.py b/ballet/validation.py index <HASH>..<HASH> 100644 --- a/ballet/validation.py +++ b/ballet/validation.py @@ -15,7 +15,7 @@ from ballet.util.ci import ( __all__ = [ 'FeatureApiValidator', - 'PullRequestFeatureValidator' + 'PullRequestStructureValidator' ] @@ -114,7 +1...
Refactor to PullRequestStructureValidator
HDI-Project_ballet
train
14f9f25038c8aeacad7093dc892c47b514a4ddc9
diff --git a/binary.go b/binary.go index <HASH>..<HASH> 100644 --- a/binary.go +++ b/binary.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "gopkg.in/vmihailenco/msgpack.v2" + "github.com/getlantern/msgpack" ) var ( diff --git a/bool.go b/bool.go index <HASH>..<HASH> 100644 --- a/bool.go +++ b/bool.go @@ -3,7 ...
Using fork of msgpack
getlantern_goexpr
train
4341a4127ef32e2cddcc6c324cfcb386c17e0202
diff --git a/lib/client/consumer.js b/lib/client/consumer.js index <HASH>..<HASH> 100644 --- a/lib/client/consumer.js +++ b/lib/client/consumer.js @@ -97,6 +97,7 @@ class RpcConsumer extends Base { requestProps: options.requestProps, codecType: options.codecType, timeout: options.responseTimeout ||...
feat: append ctx to request (#<I>)
alipay_sofa-rpc-node
train
13d8546487bf17034879c864f57105d780ead6e9
diff --git a/src/main/java/org/metacsp/utility/UI/JTSDrawingPanel.java b/src/main/java/org/metacsp/utility/UI/JTSDrawingPanel.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/metacsp/utility/UI/JTSDrawingPanel.java +++ b/src/main/java/org/metacsp/utility/UI/JTSDrawingPanel.java @@ -124,7 +124,17 @@ public class...
Added scaling and intensity parameters in JTSDrawingPanel
FedericoPecora_meta-csp-framework
train
23483eee4081ad01f1f6b4000502271907519209
diff --git a/pymatgen/symmetry/groups.py b/pymatgen/symmetry/groups.py index <HASH>..<HASH> 100644 --- a/pymatgen/symmetry/groups.py +++ b/pymatgen/symmetry/groups.py @@ -190,7 +190,6 @@ class PointGroup(SymmetryGroup): orbit.append(pp) return orbit - @cached_class class SpaceGroup(Symmetr...
Added 'get_orbit_and_generators'-method to SpaceGroup to class.
materialsproject_pymatgen
train
b4256907e69ad315a743638910980128564acdc1
diff --git a/lib/gir_ffi/base.rb b/lib/gir_ffi/base.rb index <HASH>..<HASH> 100644 --- a/lib/gir_ffi/base.rb +++ b/lib/gir_ffi/base.rb @@ -14,10 +14,14 @@ module GirFFI self.class.ffi_structure end + def _fake_missing *args, &block + method_missing method_name.to_sym, *args, &block + end + ...
Create Base#_fake_missing.
mvz_gir_ffi
train
7d997b6ecd23e5893c5783bb326f022d7be218cc
diff --git a/lib/DataManager/ArrayManager.php b/lib/DataManager/ArrayManager.php index <HASH>..<HASH> 100644 --- a/lib/DataManager/ArrayManager.php +++ b/lib/DataManager/ArrayManager.php @@ -48,12 +48,13 @@ abstract class ArrayManager implements \ArrayAccess,\Countable,\Iterator $this->clearCache(); $...
DataManager Sleep/WakeUp
julien-boudry_Condorcet
train
eb663ce3d894c836cf1d43761efc070a6a342d08
diff --git a/lib/domv.js b/lib/domv.js index <HASH>..<HASH> 100644 --- a/lib/domv.js +++ b/lib/domv.js @@ -600,7 +600,8 @@ module.exports.createHtmlDomDocument = function(minimal) { features: { FetchExternalResources: fal...
Disable MutationEvents for jsdom. They are rarely needed in the context of domv.
Joris-van-der-Wel_domv
train
1b3ef60bc0c5ba2bf35cfe5fa2a0dc39a4af8ceb
diff --git a/pygsp/filters.py b/pygsp/filters.py index <HASH>..<HASH> 100644 --- a/pygsp/filters.py +++ b/pygsp/filters.py @@ -505,12 +505,10 @@ class Meyer(Filter): t = G.t print(t) - g = [] - g.append(lambda x: kernel_meyer(t[1] * x, 'sf')) + g = [lambda x: kernel_meyer(t[0]...
Trying to fix Meyer, compute_cheby_coeff.
epfl-lts2_pygsp
train
2b94050204d82d68fddfbf565cc9d326e1cd89fc
diff --git a/lib/model_extensions.rb b/lib/model_extensions.rb index <HASH>..<HASH> 100644 --- a/lib/model_extensions.rb +++ b/lib/model_extensions.rb @@ -74,7 +74,8 @@ module OfflineMirror @offline_mirror_readonly_bypassed = true end - #:nodoc# + private + def checks_bypa...
Greened tests for stopping changes to group id, improved automatic test naming a bit
DavidMikeSimon_offroad
train
ce8e015a3e7481cc7aabd2ea10cec71e0f91b18c
diff --git a/integration/e2e/e2e_test.go b/integration/e2e/e2e_test.go index <HASH>..<HASH> 100644 --- a/integration/e2e/e2e_test.go +++ b/integration/e2e/e2e_test.go @@ -128,6 +128,24 @@ var _ = Describe("EndToEnd", func() { network.CreateAndJoinChannel(orderer, "testchannel") nwo.EnableCapabilities(network, "...
Wire disabled docker builder when docker disabled (#<I>) This prevents a panic during chaincode install when external builders cannot handle the chaincode type. [FAB-<I>]
hyperledger_fabric
train
2af030ab57d1d84ac9a1d22552dc9d83b16951c4
diff --git a/pkg/beam/data/message.go b/pkg/beam/data/message.go index <HASH>..<HASH> 100644 --- a/pkg/beam/data/message.go +++ b/pkg/beam/data/message.go @@ -72,6 +72,16 @@ func (m Message) Get(k string) []string { return v } +// GetOne returns the last value added at the key k, +// or an empty string if there is...
beam/data: Message.GetOne() returns the last value set at a key This is a convenience for callers which are only interested in one value per key. Similar to how HTTP headers allow multiple keys per value, but are often used to store and retrieve only one value. Docker-DCO-<I>-
containers_storage
train
815ef776f8e4cd710e510bbec61e3992db75a5b1
diff --git a/plugins/API/ProcessedReport.php b/plugins/API/ProcessedReport.php index <HASH>..<HASH> 100644 --- a/plugins/API/ProcessedReport.php +++ b/plugins/API/ProcessedReport.php @@ -817,7 +817,10 @@ class ProcessedReport } // Display time in human readable - if (strpos($columnName, 'time...
Format min and max generation time properly when they are added to custom reports and in the tooltip of the regular action reports. E.g. for <I>ms print "<I>s" instead of "<I>:<I>:<I>".
matomo-org_matomo
train
96ad14b2bbaee3e00d423421f5d28c20ce9ee742
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -575,9 +575,9 @@ export default class BackgroundGeolocation { */ static getLog(success, failure) { if (!arguments.length) { - return NativeModule.getLog(); + return Logger.getLog(); } ...
Fix backwards-compatibility of deprecated getLog, destroyLog, emailLog by proxying into new Logger API
transistorsoft_react-native-background-geolocation
train
b4bc4dfd1217ab1e1f8cfefb520830adbab65d50
diff --git a/discord/player.py b/discord/player.py index <HASH>..<HASH> 100644 --- a/discord/player.py +++ b/discord/player.py @@ -138,7 +138,7 @@ class FFmpegPCMAudio(AudioSource): args.extend(shlex.split(before_options)) args.append('-i') - args.append('-' if pipe else shlex.quote(sourc...
Fix FFmpegPCMAudio not working with spaces in filename.
Rapptz_discord.py
train
c6da710233070ccae832a16125ec8fbeb443604c
diff --git a/openquake/calculators/extract.py b/openquake/calculators/extract.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/extract.py +++ b/openquake/calculators/extract.py @@ -19,6 +19,7 @@ from urllib.parse import parse_qs from functools import lru_cache import collections import logging +import gzip...
Gzipping the boundaries [skip hazardlib]
gem_oq-engine
train
4f8df220b45e61a61784c0acfe9a8323e39cba79
diff --git a/CHANGES.txt b/CHANGES.txt index <HASH>..<HASH> 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,6 +6,9 @@ pypet 0.1b.8 * Checking if names of leaf and group nodes only contain alphanumeric characters +* PickleParameter and PickleResult now explicitly store the pickle protocol + because retrieva...
Explicitly storing pickle protocol for PickleParameter and Result
SmokinCaterpillar_pypet
train
580f65f87d7ae075d325332149185c43cfdb5141
diff --git a/packages/rev-models/typedoc.js b/packages/rev-models/typedoc.js index <HASH>..<HASH> 100644 --- a/packages/rev-models/typedoc.js +++ b/packages/rev-models/typedoc.js @@ -5,6 +5,7 @@ module.exports = { readme: './DOCINDEX.md', includes: './src', + exclude: '**/{__tests__,examples}/**/*', ...
Exclude tests and examples from API docs
RevJS_revjs
train
70c24cfcfa60896aa39f445895f70fc1d8de5377
diff --git a/master/buildbot/test/fake/fakebuild.py b/master/buildbot/test/fake/fakebuild.py index <HASH>..<HASH> 100644 --- a/master/buildbot/test/fake/fakebuild.py +++ b/master/buildbot/test/fake/fakebuild.py @@ -41,6 +41,7 @@ class FakeBuild(properties.PropertiesMixin): spec=workerforbuilder.WorkerForBu...
test: Improve locking tests to actually check whether locks happened
buildbot_buildbot
train
b46692aefb93dcdc6833b24f32fb0755a9c42f63
diff --git a/packages/mdx/mdx-hast-to-jsx.js b/packages/mdx/mdx-hast-to-jsx.js index <HASH>..<HASH> 100644 --- a/packages/mdx/mdx-hast-to-jsx.js +++ b/packages/mdx/mdx-hast-to-jsx.js @@ -72,7 +72,7 @@ function toJSX(node, parentNode = {}, options = {}) { const exportNames = exportNodes .map(node => - ...
Ensure compiling hast doesn't fail if path contains export (#<I>)
mdx-js_mdx
train
0dba8b30f8f3c3cd71bd1c12aac1e71308352cea
diff --git a/unicodeutil/unicodeutil.py b/unicodeutil/unicodeutil.py index <HASH>..<HASH> 100644 --- a/unicodeutil/unicodeutil.py +++ b/unicodeutil/unicodeutil.py @@ -5,6 +5,7 @@ from fractions import Fraction import codecs import os import re +import struct import six @@ -55,7 +56,7 @@ def _unichr(i): ...
Fix to get things working on PyPy3 on Windows <I>.
leonidessaguisagjr_unicodeutil
train
a58a792ba60578ad57f0a2d585c674fab45a23a2
diff --git a/mod/glossary/lib.php b/mod/glossary/lib.php index <HASH>..<HASH> 100644 --- a/mod/glossary/lib.php +++ b/mod/glossary/lib.php @@ -3381,6 +3381,7 @@ function glossary_get_entries_by_letter($glossary, $context, $letter, $from, $li $qb->join_user(); $qb->add_user_fields(); $qb->order_by('concep...
MDL-<I> mod_glossary: Ensure consistent order when pagination is used
moodle_moodle
train
837755f551a2c1c6a3a73fdd900e80c20fc47239
diff --git a/src/renderers/sigma.renderers.def.js b/src/renderers/sigma.renderers.def.js index <HASH>..<HASH> 100644 --- a/src/renderers/sigma.renderers.def.js +++ b/src/renderers/sigma.renderers.def.js @@ -12,10 +12,14 @@ webgl = !!global.WebGLRenderingContext; if (webgl) { canvas = document.createEleme...
Added try/catch for control WebGL options in "Hard Environments"
jacomyal_sigma.js
train
878bb58e1326e6e3979221ad32a66756f260fcd5
diff --git a/src/Alumni.php b/src/Alumni.php index <HASH>..<HASH> 100644 --- a/src/Alumni.php +++ b/src/Alumni.php @@ -16,7 +16,7 @@ class Alumni extends Person /** * @param Person $person * @param array $attrs - * @return Person + * @return Alumni */ protected static function fill(...
Provide more specific PHPDoc type hinting.
UWEnrollmentManagement_Person
train
9f70e16d88bc3af0685c69788dca18545c909622
diff --git a/doc/code.go b/doc/code.go index <HASH>..<HASH> 100644 --- a/doc/code.go +++ b/doc/code.go @@ -299,13 +299,13 @@ func (b *builder) printExample(e *doc.Example) (code Code, output string) { output = e.Output b.buf = b.buf[:0] - err := (&printer.Config{Mode: printer.UseSpaces, Tabwidth: 4}).Fprint( - s...
Use play code for examples to solve issue #<I> Thanks @garyburd for saving me of the unholiness of faulty regexps
golang_gddo
train
370a83a11b2664d46c7f59e66d8daf5d5dbcfa80
diff --git a/describe.go b/describe.go index <HASH>..<HASH> 100644 --- a/describe.go +++ b/describe.go @@ -15,32 +15,45 @@ import ( ) // RE for sanitizing golang/JS layer -var reSanitizeMermaidNodeName = regexp.MustCompile("[\\s\\W]+") +var reSanitizeMermaidNodeName = regexp.MustCompile("[\\W\\s]+") +var reSanitize...
Patch up `describe` output s.t. Mermaid parser doesn't fail
mweagle_Sparta
train
971cd184b491f12e0a5e8f9811b73642b4d37f43
diff --git a/kaba/kaba/js.js b/kaba/kaba/js.js index <HASH>..<HASH> 100644 --- a/kaba/kaba/js.js +++ b/kaba/kaba/js.js @@ -6,22 +6,13 @@ * output: string, * ignoreLintFor: Array.<(string|RegExp)>, * }} JsTaskConfig - * - * @typedef {{ - * srcDir: string, - * output: string, - * ignoreLint...
Only use one config throughout the JS task
Becklyn_kaba
train
2acca770eff3d78b68b0d356acba5517a9a41029
diff --git a/server.go b/server.go index <HASH>..<HASH> 100644 --- a/server.go +++ b/server.go @@ -2,6 +2,7 @@ package yarpc import ( "net" + "sync" "encoding/binary" "io" @@ -48,6 +49,7 @@ type Server struct { m map[uint8]*service serve bool lis net.Listener + lisMu sync.Mutex } type options...
Add a mutex to avoid a data race when starting/stopping a server
influxdata_yarpc
train
d4939a670a71e9ffc9b988829b7e87887009995c
diff --git a/admin_site_logs.php b/admin_site_logs.php index <HASH>..<HASH> 100644 --- a/admin_site_logs.php +++ b/admin_site_logs.php @@ -212,6 +212,11 @@ $url= '&amp;user='.rawurlencode($user). '&amp;gedc='.rawurlencode($gedc); +$gedc_array=array(); +foreach (get_all_gedcoms() as $ged_name) { + $gedc_array[$ged...
Fix: site-logs page fails when there are no gedcoms (e.g. immediately after installation)
fisharebest_webtrees
train
61838982766831a29844d07b33b36cff2e91ae30
diff --git a/SingularityS3Uploader/src/main/java/com/hubspot/singularity/s3uploader/SingularityS3Uploader.java b/SingularityS3Uploader/src/main/java/com/hubspot/singularity/s3uploader/SingularityS3Uploader.java index <HASH>..<HASH> 100644 --- a/SingularityS3Uploader/src/main/java/com/hubspot/singularity/s3uploader/Sing...
set proper Content-Encoding for s3 uploads
HubSpot_Singularity
train
ea8bb3c267f372f8c30634853aa737b8fa919a94
diff --git a/lib/jsonapi/resource_serializer.rb b/lib/jsonapi/resource_serializer.rb index <HASH>..<HASH> 100644 --- a/lib/jsonapi/resource_serializer.rb +++ b/lib/jsonapi/resource_serializer.rb @@ -353,8 +353,10 @@ module JSONAPI end def to_one_linkage(source, relationship) - return unless linkage_id ...
test presence (catch empty strings too) of linkage_id and linkage_type
cerebris_jsonapi-resources
train
46f525c7d6be823684ccd183ef909d92385244c8
diff --git a/libnetwork/drivers/bridge/bridge_store.go b/libnetwork/drivers/bridge/bridge_store.go index <HASH>..<HASH> 100644 --- a/libnetwork/drivers/bridge/bridge_store.go +++ b/libnetwork/drivers/bridge/bridge_store.go @@ -83,9 +83,9 @@ func (d *driver) populateEndpoints() error { n, ok := d.networks[ep.nid] ...
Overlay driver to cleanup stale endpoints
moby_moby
train
5577c966ca242741705ae4ad5913dc4b86ffa501
diff --git a/commerce-openapi-util/src/main/java/com/liferay/commerce/openapi/util/Response.java b/commerce-openapi-util/src/main/java/com/liferay/commerce/openapi/util/Response.java index <HASH>..<HASH> 100644 --- a/commerce-openapi-util/src/main/java/com/liferay/commerce/openapi/util/Response.java +++ b/commerce-open...
COMMERCE-<I> commerce-openapi-util - Remove duplicated section (cherry picked from commit <I>d<I>fdc9e3a<I>d3c<I>eaac1e<I>)
liferay_com-liferay-commerce
train
27c3e727b073701bfc739859d8325435d27cbf35
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -97,12 +97,22 @@ class HtmlWebpackPlugin { // Clear the cache once a new HtmlWebpackPlugin is added childCompiler.clearCache(compiler); - // Clear the cache if the child compiler is outdated + // Register all...
fix: Add dependencies from the child compilation to the main compilation
jantimon_html-webpack-plugin
train
f866edf07a61a928c57daf590240e6f52927d687
diff --git a/views/js/runner/provider/qti.js b/views/js/runner/provider/qti.js index <HASH>..<HASH> 100644 --- a/views/js/runner/provider/qti.js +++ b/views/js/runner/provider/qti.js @@ -118,6 +118,8 @@ define([ if (results.testMap) { self.setTestMap(resul...
update and maintain test map stats client side
oat-sa_extension-tao-testqti
train
2223c6323769fd84e6ad10576aa4ddd247583b3e
diff --git a/cumulusci/cli/tests/test_config.py b/cumulusci/cli/tests/test_config.py index <HASH>..<HASH> 100644 --- a/cumulusci/cli/tests/test_config.py +++ b/cumulusci/cli/tests/test_config.py @@ -47,11 +47,8 @@ class TestCliConfig(unittest.TestCase): config.global_config.get_project_config = mock.Mock( ...
test what you want, not what DG left
SFDO-Tooling_CumulusCI
train
95d346b231bfabe5d21efb516ea0b539d72c78f3
diff --git a/examples/blink.go b/examples/blink.go index <HASH>..<HASH> 100644 --- a/examples/blink.go +++ b/examples/blink.go @@ -12,12 +12,6 @@ import ( ) func main() { - // select which driver you're using, which depends on what kind of board you're using. - // Here, we are using a beaglebone. These will not be ...
Autodetect beaglebone driver, and remove explicit driver assignment from examples
mrmorphic_hwio
train
28817f0f0ae5b3fbb71cf0cd7a73a9c72477fc6d
diff --git a/packages/pipelines-v5/commands/pipelines/diff.js b/packages/pipelines-v5/commands/pipelines/diff.js index <HASH>..<HASH> 100644 --- a/packages/pipelines-v5/commands/pipelines/diff.js +++ b/packages/pipelines-v5/commands/pipelines/diff.js @@ -46,18 +46,19 @@ function * getAppInfo (heroku, appName, appId) { ...
fix(pipelines-v5): Only consider succeeded releases in pipelines:diff
heroku_cli
train
75d7a6177a9e4c78af862c38637ea54fde16cf38
diff --git a/tests/Stub/FatalErrorTestStub.php b/tests/Stub/FatalErrorTestStub.php index <HASH>..<HASH> 100644 --- a/tests/Stub/FatalErrorTestStub.php +++ b/tests/Stub/FatalErrorTestStub.php @@ -6,14 +6,13 @@ namespace Tests\Stub; class FatalErrorTestStub extends BrokenTestBase implements BrokenTestInterface { - ...
Improve stub to avoid memory leak
facile-it_paraunit
train
e76c45f841547879e3fca0c255563fee05f451ac
diff --git a/packages/d3fc-extent/src/date.js b/packages/d3fc-extent/src/date.js index <HASH>..<HASH> 100644 --- a/packages/d3fc-extent/src/date.js +++ b/packages/d3fc-extent/src/date.js @@ -10,10 +10,12 @@ export default function() { const extent = linearExtent(); + const valueOf = date => date != null ? d...
fix: handle null dates (#<I>) * fix: handle null dates * fix: handle null dates
d3fc_d3fc
train
0c87467f6989840b66419efb795be118fa50938e
diff --git a/e2e/ctl_v3_auth_test.go b/e2e/ctl_v3_auth_test.go index <HASH>..<HASH> 100644 --- a/e2e/ctl_v3_auth_test.go +++ b/e2e/ctl_v3_auth_test.go @@ -33,8 +33,9 @@ func TestCtlV3AuthMemberAdd(t *testing.T) { testCtl(t, authTestMemberA func TestCtlV3AuthMemberRemove(t *testing.T) { testCtl(t, authTestM...
e2e: add a test case role delete and revoke
etcd-io_etcd
train
dc4c52785a656f4b47c7d94e3d6df1a743979998
diff --git a/samples/struct.js b/samples/struct.js index <HASH>..<HASH> 100644 --- a/samples/struct.js +++ b/samples/struct.js @@ -73,6 +73,9 @@ function writeDataForStructQueries(instanceId, databaseId, projectId) { function queryDataWithStruct(instanceId, databaseId, projectId) { // [START spanner_create_struct...
Fix sample tests (#<I>) * fix struct tests
googleapis_nodejs-spanner
train
fc36c41ba7333ae95622d2eefa0560e9c67e9c46
diff --git a/openbas/client/actuate.js b/openbas/client/actuate.js index <HASH>..<HASH> 100644 --- a/openbas/client/actuate.js +++ b/openbas/client/actuate.js @@ -91,7 +91,7 @@ if (Meteor.isClient) { }; Template.actuator_display.ploturl = function() { - return Meteor.absoluteUrl('plot?'+getPermalink(this.Act...
Use relative urls for plotting
SoftwareDefinedBuildings_XBOS
train
25453d88bf9224f4e79698acb6cc1be9efdc0922
diff --git a/pkg/backend/display/json.go b/pkg/backend/display/json.go index <HASH>..<HASH> 100644 --- a/pkg/backend/display/json.go +++ b/pkg/backend/display/json.go @@ -45,7 +45,7 @@ func massagePropertyValue(v resource.PropertyValue, showSecrets bool) resource.P for k, e := range v.ObjectValue() { new[k] = ma...
Fix a bug in out logic for replacing secrets with `[secret]`
pulumi_pulumi
train
912c1c55ec640f4e6fca6334db38557781ec6588
diff --git a/lib/Palette.js b/lib/Palette.js index <HASH>..<HASH> 100644 --- a/lib/Palette.js +++ b/lib/Palette.js @@ -9,12 +9,23 @@ var merge = function (base, mixin) { return base; }; -/** - * A JASC Paint Shop Pro Palette file. - * - * @param {string|Buffer} buf Palette file source. - * @constructor - */ +// A...
support \r\n line ends too (it's actually the more prevalent kind\!)
genie-js_jascpal
train
867e19d9d7e5b939dec3e87ed091ca0be457ea79
diff --git a/lib/ezutils/classes/ezdebug.php b/lib/ezutils/classes/ezdebug.php index <HASH>..<HASH> 100644 --- a/lib/ezutils/classes/ezdebug.php +++ b/lib/ezutils/classes/ezdebug.php @@ -1937,14 +1937,14 @@ class eZDebug { if ( $matches[6] ) { - ...
Fixed #EZP-<I>: ezpublish_legacy - DebugByIP IPV4 not working correctly backport of ipv4 matching from ez <I> so ip and network matching for DebugByIp settings is working now
ezsystems_ezpublish-legacy
train
bee169ade78c640b5dc45846340465adb8f07709
diff --git a/werkzeug/serving.py b/werkzeug/serving.py index <HASH>..<HASH> 100644 --- a/werkzeug/serving.py +++ b/werkzeug/serving.py @@ -516,7 +516,7 @@ def run_simple(hostname, port, application, use_reloader=False, passthrough_errors, ssl_context).serve_forever() if os.environ.get('WERKZ...
Binding to '*' should now print localhost in the URL.
pallets_werkzeug
train
edde89adc106f52a83c3679ede1dcfa8cf558166
diff --git a/tests/test_progress_parameter.py b/tests/test_progress_parameter.py index <HASH>..<HASH> 100644 --- a/tests/test_progress_parameter.py +++ b/tests/test_progress_parameter.py @@ -58,18 +58,15 @@ def test_log_file_verbosity_2(): tpot_obj.fit(X, y) assert_equal(os.path.getsize(file_name) > 0, True) ...
Make log_file test3 back.
EpistasisLab_tpot
train
2ae8ccee4ab4729c2f2c144d8438114703cda568
diff --git a/nodes/entity/entity.js b/nodes/entity/entity.js index <HASH>..<HASH> 100644 --- a/nodes/entity/entity.js +++ b/nodes/entity/entity.js @@ -191,8 +191,7 @@ module.exports = function(RED) { )) { attributes.push({ property: prop, - ...
refactor(sensor): Change attributes passed in message object to keep their type
zachowj_node-red-contrib-home-assistant-websocket
train
50c0bc98bef96e309fb70b8374d71847213a2d72
diff --git a/openquake/engine/calculators/hazard/general.py b/openquake/engine/calculators/hazard/general.py index <HASH>..<HASH> 100644 --- a/openquake/engine/calculators/hazard/general.py +++ b/openquake/engine/calculators/hazard/general.py @@ -341,10 +341,12 @@ class BaseHazardCalculator(base.Calculator): ...
Fixed the case when a source model does not produce ruptures (event based case_5) Former-commit-id: f<I>cb<I>d8f6d6f<I>bf<I>c<I>a<I>
gem_oq-engine
train
735e03f550d16daa86849b07dfa56649303f40e4
diff --git a/HISTORY.rst b/HISTORY.rst index <HASH>..<HASH> 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,7 @@ Changelog 0.5.2 (unreleased) ------------------ - Fix bug with computing start and end indices of sentences. +- Fix bug with import TextBlob if local NLTK is installed. 0.5.1 (2013-08-13) diff ...
Fix bug with importing textblob with local nltk installed By adding python_2_unicode_compatible decorator to text/compat.py
sloria_TextBlob
train
3f7b248a8f5b664aa78d5a671ce4c58920680025
diff --git a/intranet/apps/announcements/forms.py b/intranet/apps/announcements/forms.py index <HASH>..<HASH> 100644 --- a/intranet/apps/announcements/forms.py +++ b/intranet/apps/announcements/forms.py @@ -59,7 +59,7 @@ class AnnouncementRequestForm(forms.ModelForm): "to a specific group of students, such...
fix(announcements): expand groups allowed to approve announcements
tjcsl_ion
train
344cb03551ab155ab3799e9279374ccfd2d6c605
diff --git a/Swat/SwatTableViewCheckAllRow.php b/Swat/SwatTableViewCheckAllRow.php index <HASH>..<HASH> 100644 --- a/Swat/SwatTableViewCheckAllRow.php +++ b/Swat/SwatTableViewCheckAllRow.php @@ -78,7 +78,6 @@ class SwatTableViewCheckAllRow extends SwatTableViewRow { $columns = $this->view->getColumns(); - $this...
foo? svn commit r<I>
silverorange_swat
train
edddc50af77298b0d9ed61d37263924d48af036c
diff --git a/scripts/start.js b/scripts/start.js index <HASH>..<HASH> 100644 --- a/scripts/start.js +++ b/scripts/start.js @@ -208,7 +208,7 @@ function addMiddleware(devServer) { // So if `proxy` is specified, we need to decide which fallback to use. // We use a heuristic: if request `accept`s text/html, we p...
Fixed typo in code comment (#<I>)
vcarl_create-react-app
train
6a49d9dcd03f5378ba09819389a87bef067b1142
diff --git a/cassandra/encoder.py b/cassandra/encoder.py index <HASH>..<HASH> 100644 --- a/cassandra/encoder.py +++ b/cassandra/encoder.py @@ -67,7 +67,7 @@ class Encoder(object): def __init__(self): self.mapping = { - float: self.cql_encode_object, + float: self.cql_encode_float, ...
CQL encode floats with repr to preserve precision.
datastax_python-driver
train
fbeeaec475beca4fe389da6d8f2464cdcb11f9f1
diff --git a/classes/util/Loop.php b/classes/util/Loop.php index <HASH>..<HASH> 100644 --- a/classes/util/Loop.php +++ b/classes/util/Loop.php @@ -84,7 +84,7 @@ class Loop /* * Calculate max time remaining, don't sleep any longer than that. */ - $usecRemaining = intva...
Remove some PHP version constraints that no longer apply
php-lock_lock
train
038218f3948cd3d1a78e2a9fdfac78bb78de6ca5
diff --git a/src/BaseTool.php b/src/BaseTool.php index <HASH>..<HASH> 100644 --- a/src/BaseTool.php +++ b/src/BaseTool.php @@ -23,7 +23,7 @@ class BaseTool { /* Accessing these outside the class is discouraged, use or create get/setters instead */ var $displayTitle = ''; var $remoteBasePath = ''; - var $revisionI...
BaseTool: Make 'revisionId' optional Previously it defaulted to "v" due to string concatenation later on assuming it to be non-empty.
Krinkle_toollabs-base
train
9fd281468b103ce2499a5fece1fd757d6baa36e2
diff --git a/go/libkb/version.go b/go/libkb/version.go index <HASH>..<HASH> 100644 --- a/go/libkb/version.go +++ b/go/libkb/version.go @@ -12,7 +12,7 @@ import ( const Version = "1.0.0" // Build number -const Build = "38" +const Build = "39" // VersionString returns semantic version string. func VersionString()...
Bump build number to <I>
keybase_client
train
1ff7c69fe43d596577cd0f404c754b6400775022
diff --git a/etc/adapters/etcd.py b/etc/adapters/etcd.py index <HASH>..<HASH> 100644 --- a/etc/adapters/etcd.py +++ b/etc/adapters/etcd.py @@ -10,6 +10,7 @@ import io import socket import sys +import iso8601 import requests from requests.packages.urllib3.exceptions import ReadTimeoutError import six @@ -75,7 +76...
Parse expiration as ISO-<I>
sublee_etc
train
45bd72fb672070d055d476ec66fa6f5e7f5ee2d1
diff --git a/pyphi/conf.py b/pyphi/conf.py index <HASH>..<HASH> 100644 --- a/pyphi/conf.py +++ b/pyphi/conf.py @@ -455,6 +455,12 @@ class Config: def __str__(self): return pprint.pformat(self.__dict__, indent=2) + def __setattr__(self, name, value): + '''Before setting, check that the option i...
Don't allow non-options to be set
wmayner_pyphi
train
73c66c8c48c4399606b35ac02410d44284863438
diff --git a/base.php b/base.php index <HASH>..<HASH> 100644 --- a/base.php +++ b/base.php @@ -1906,7 +1906,7 @@ class View extends Prefab { $cached=$cache->exists($hash=$fw->hash($file),$data); if ($cached && $cached[0]+$ttl>microtime(TRUE)) return $data; - foreach ($fw->split($fw->get('UI')) as $dir) + fo...
Add base directory to UI path as fallback
bcosca_fatfree-core
train
d5b21278be518fd3db1fe48b17b862b103660b2c
diff --git a/explauto/environment/environment.py b/explauto/environment/environment.py index <HASH>..<HASH> 100644 --- a/explauto/environment/environment.py +++ b/explauto/environment/environment.py @@ -4,6 +4,7 @@ from abc import ABCMeta, abstractmethod from ..utils.config import make_configuration from ..utils.ob...
Add random_motor to Environment and clean it
flowersteam_explauto
train
9c9b967321ca2497f438b59a062c85ba1e08bbe1
diff --git a/telemetry/telemetry/tab_backend.py b/telemetry/telemetry/tab_backend.py index <HASH>..<HASH> 100644 --- a/telemetry/telemetry/tab_backend.py +++ b/telemetry/telemetry/tab_backend.py @@ -94,9 +94,12 @@ class TabBackend(object): return False if self._runtime.Evaluate( - 'window.chrome.gp...
[Telemetry] Fix typos in Screenshot code. We can't check the Chrome branch number yet, since we don't know what it is until this change is checked in :P BUG=None. TEST=None. Review URL: <URL>
catapult-project_catapult
train
d453b39bf50592a0ba2a6e60751e6c3e1ea05138
diff --git a/tests/test_DataMatrix.py b/tests/test_DataMatrix.py index <HASH>..<HASH> 100644 --- a/tests/test_DataMatrix.py +++ b/tests/test_DataMatrix.py @@ -19,18 +19,10 @@ class test_DataMatrixFromSlocusPop(unittest.TestCase): self.pop, self.indlist, self.keys[0], self.keys[1]) self.gm = fwdpy1...
Update unit tests of DataMatrix to reflect new Python classes.
molpopgen_fwdpy11
train
497f56c3e1b276fb9499833da0cebfb3b756d03b
diff --git a/tools/python_test_v4.py b/tools/python_test_v4.py index <HASH>..<HASH> 100644 --- a/tools/python_test_v4.py +++ b/tools/python_test_v4.py @@ -843,9 +843,9 @@ for i in range(20, 40): error_message = e.error_message break assert "Retry later" in error_message -[current_project.delete() for...
test: increase speed by disabling the rate limit faster
python-gitlab_python-gitlab
train
39f5cae8f08435437d5f0de24966c92417adb511
diff --git a/library/WT/Person.php b/library/WT/Person.php index <HASH>..<HASH> 100644 --- a/library/WT/Person.php +++ b/library/WT/Person.php @@ -1680,6 +1680,9 @@ class WT_Person extends WT_GedcomRecord { $full=$full; } + // GEDCOM uses "//" to indicate an unknown surname + $full=preg_replace('/\/\//', '/@...
unknown surnames not being recorded in the database
fisharebest_webtrees
train
8c1c912dff5d9e6bba0ef4c9fc3be640db1e84ff
diff --git a/src/menus/SidebarMenu.php b/src/menus/SidebarMenu.php index <HASH>..<HASH> 100644 --- a/src/menus/SidebarMenu.php +++ b/src/menus/SidebarMenu.php @@ -13,7 +13,7 @@ namespace hipanel\modules\finance\menus; use Yii; -class SidebarMenu extends \hiqdev\menumanager\Menu +class SidebarMenu extends \hiqdev\y...
redone yii2-thememanager -> yii2-menus
hiqdev_hipanel-module-finance
train
e6fe0d118b96647656f45a0cfebd2b5060b3fc6c
diff --git a/src/main/java/org/javaspec/runner/ClassExampleGateway.java b/src/main/java/org/javaspec/runner/ClassExampleGateway.java index <HASH>..<HASH> 100755 --- a/src/main/java/org/javaspec/runner/ClassExampleGateway.java +++ b/src/main/java/org/javaspec/runner/ClassExampleGateway.java @@ -118,7 +118,7 @@ final cla...
Starting to do before lambdas for nested contexts.
kkrull_javaspec
train