hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
2289505eff6c723ce288aa63a39fddd9dd770a1f | diff --git a/src/Exscriptd/RestClient.py b/src/Exscriptd/RestClient.py
index <HASH>..<HASH> 100644
--- a/src/Exscriptd/RestClient.py
+++ b/src/Exscriptd/RestClient.py
@@ -15,6 +15,7 @@
"""
Places orders and requests the status from a server.
"""
+from lxml import etree
from urllib import urlen... | Exscriptd.RestClient: add an API for getting a list of orders. | knipknap_exscript | train |
9c68f039b37b2ad76205a4100f1c9fe8acd0072c | diff --git a/scripts/generate-plugins.go b/scripts/generate-plugins.go
index <HASH>..<HASH> 100644
--- a/scripts/generate-plugins.go
+++ b/scripts/generate-plugins.go
@@ -34,12 +34,12 @@ func main() {
log.Fatalf("Failed to discover builders: %s", err)
}
- provisioners, _ := discoverProvisioners()
+ provisioners,... | Don't suppress errors from provisioners or post-processors | hashicorp_packer | train |
13cab2cfde316799699e4076b5845b76af8c95f5 | diff --git a/usgs/api.py b/usgs/api.py
index <HASH>..<HASH> 100644
--- a/usgs/api.py
+++ b/usgs/api.py
@@ -62,11 +62,21 @@ def dataset_fields(dataset, node):
def download(dataset, node, entityids, products):
- raise NotImplementedError
- # api_key = _get_api_key()
- #
- # download(dataset, node, en... | get download urls from api | kapadia_usgs | train |
48e4de823a05ebe122d5f2b6051e970b9eb388a8 | diff --git a/pkg/cmd/grafana-server/main.go b/pkg/cmd/grafana-server/main.go
index <HASH>..<HASH> 100644
--- a/pkg/cmd/grafana-server/main.go
+++ b/pkg/cmd/grafana-server/main.go
@@ -118,9 +118,7 @@ func listenToSystemSignels() {
signalChan := make(chan os.Signal, 1)
code := 0
- signal.Notify(signalChan, os.Inter... | Unify signal registration in a single syscall. | grafana_grafana | train |
8b25ef493bfa4b745d6f4af0e25ad88d91070029 | diff --git a/login.php b/login.php
index <HASH>..<HASH> 100644
--- a/login.php
+++ b/login.php
@@ -110,11 +110,12 @@ default:
$controller->pageHeader();
$controller
->addInlineJavaScript('
- jQuery("#new_passwd_form").hide();
- jQuery("#passwd_click").click(function()
- {
- jQuery("#new_passwd_for... | Bug #<I> - Password reset-not able to select fields Reported by LeslieP | fisharebest_webtrees | train |
70918423ea8eea6c5545fdeefe50ea6b79d45520 | diff --git a/test/spec/JSUtils-test-files/simple.js b/test/spec/JSUtils-test-files/simple.js
index <HASH>..<HASH> 100644
--- a/test/spec/JSUtils-test-files/simple.js
+++ b/test/spec/JSUtils-test-files/simple.js
@@ -91,3 +91,4 @@ var anotherObj = {
var noSpaceAfterFunction2 = function() {
/* jslint hates this too ... | Added another case from bug #<I> | adobe_brackets | train |
da25ac14a244f84f0c14cf798ef25904997b2ce8 | diff --git a/app.js b/app.js
index <HASH>..<HASH> 100644
--- a/app.js
+++ b/app.js
@@ -54,4 +54,7 @@ leagueApi.init('', 'na');
// leagueApi.getTeams(19321078, function(err, data) {
// console.log(err);
// console.log(data);
-// });
\ No newline at end of file
+// });
+leagueApi.getMapNames(function(err, regions) {... | Added game constant functions, fixes #6 | Colorfulstan_LeagueJS | train |
b516842fe7d9b10f6364f3d1e23f3eb697eba134 | diff --git a/engine/test_engine.py b/engine/test_engine.py
index <HASH>..<HASH> 100644
--- a/engine/test_engine.py
+++ b/engine/test_engine.py
@@ -166,11 +166,39 @@ class Test_Engine(unittest.TestCase):
assert numpy.alltrue(C <= xmax)
assert numpy.alltrue(C >= 0)
+ def test_ITB_earthquake_fatalit... | Test stub for ITB fatality function | inasafe_inasafe | train |
2ef2481b2f076b835bbabc162f20229fd3c3bc37 | diff --git a/lib/ftscroller.js b/lib/ftscroller.js
index <HASH>..<HASH> 100755
--- a/lib/ftscroller.js
+++ b/lib/ftscroller.js
@@ -849,9 +849,11 @@ var FTScroller, CubicBezier;
if (!scrollCancelled) {
_fireEvent('scroll', { scrollLeft: -_baseScrollPosition.x, scrollTop: -_baseScrollPosition.y });
_updateS... | Scrollend event is now fired even when the scrolling has been cancelled by the user. | ftlabs_ftscroller | train |
5bda307ce204a27f03316652a79131685b2e5fb2 | diff --git a/grab/tools/russian.py b/grab/tools/russian.py
index <HASH>..<HASH> 100644
--- a/grab/tools/russian.py
+++ b/grab/tools/russian.py
@@ -11,21 +11,35 @@ class InvalidMonthName(Exception):
RE_NOT_ENCHAR = re.compile(u'[^-a-zA-Z0-9]', re.U)
RE_NOT_ENRUCHAR = re.compile(u'[^-a-zA-Zа-яА-ЯёЁ0-9]', re.U)
-RE_RU... | Add allowed_dot argument to slugify function. Write more tests for slugify function | lorien_grab | train |
77241a29b7c323593495758568dbbe1b7323f8d2 | diff --git a/grimoire/ocean/bugzilla.py b/grimoire/ocean/bugzilla.py
index <HASH>..<HASH> 100644
--- a/grimoire/ocean/bugzilla.py
+++ b/grimoire/ocean/bugzilla.py
@@ -29,6 +29,50 @@ from grimoire.ocean.elastic import ElasticOcean
class BugzillaOcean(ElasticOcean):
+ def get_identities(self, item):
+ ''' ... | [bugzilla ocean] Implemented get_identities. | chaoss_grimoirelab-elk | train |
cc1c30f207e944257dcf455ca742d46a02399f3e | diff --git a/redisCacheModule.js b/redisCacheModule.js
index <HASH>..<HASH> 100644
--- a/redisCacheModule.js
+++ b/redisCacheModule.js
@@ -371,4 +371,5 @@ function redisCacheModule(config){
init();
}
-module.exports = redisCacheModule;
\ No newline at end of file
+module.exports = redisCacheModule;
+redisCacheMod... | Adding unit tests on the retry strategy. | jpodwys_cache-service-redis | train |
414d502b2cbfc2c66416703448331e43c8bfe7d7 | diff --git a/guide/src/layouts/index.js b/guide/src/layouts/index.js
index <HASH>..<HASH> 100644
--- a/guide/src/layouts/index.js
+++ b/guide/src/layouts/index.js
@@ -23,9 +23,8 @@ const Header = () => (
}}
>
<Heading1>
- <Link to="/">Kaizen</Link>
+ <Link to="/">Kaizen</Link> - Culture Amp's Liv... | Collapse the H1 at the top of the page onto a single line
To save space until we implement the proper nav | cultureamp_cultureamp-style-guide | train |
69c2f8d6dbf2ba1608188ec1b4fb6685a8c12aba | diff --git a/libnetwork/endpoint_info.go b/libnetwork/endpoint_info.go
index <HASH>..<HASH> 100644
--- a/libnetwork/endpoint_info.go
+++ b/libnetwork/endpoint_info.go
@@ -114,12 +114,12 @@ func (epi *endpointInterface) UnmarshalJSON(b []byte) error {
}
}
if v, ok := epMap["llAddrs"]; ok {
- list := v.([]string)... | Fix bug in link-local unmarshalling | moby_moby | train |
fc9701aec0770249da1547e51552d19b1f9fef2f | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -31,7 +31,7 @@ setup(
'django>=1.6',
'django-class-based-auth-views>=0.2',
'django-piston==1.1.8',
- 'germanium==0.1.5',
+ 'germanium>=0.1.5',
'django-block-snippets==0.0.11',
... | <I> Allowed higher version of germanium | matllubos_django-is-core | train |
95ec6922343ecf667556ebedcacc212664dcca1e | diff --git a/client/state/reader/tags/images/actions.js b/client/state/reader/tags/images/actions.js
index <HASH>..<HASH> 100644
--- a/client/state/reader/tags/images/actions.js
+++ b/client/state/reader/tags/images/actions.js
@@ -57,7 +57,7 @@ export function requestTagImages( tag, limit = 5 ) {
return wpcom.undo... | Reader: Fix how we accept error or broken responses from tag images (#<I>)
Currently, if the server responds with an error or a bad result object, we end up re-requesting tag images because we don't currently have any. This ends up spamming the server and issuing a ton of ES requests.
This changes it to push in an ... | Automattic_wp-calypso | train |
1339f7e783c7e20d40c4a431d0c0a9860aa4c756 | diff --git a/Transliteratable/Transliterator.php b/Transliteratable/Transliterator.php
index <HASH>..<HASH> 100644
--- a/Transliteratable/Transliterator.php
+++ b/Transliteratable/Transliterator.php
@@ -46,7 +46,12 @@ class Transliterator implements TransliteratorInterface
return $transliterated;
... | Escape allowed symbols in transliterator. | DarvinStudio_darvin-utils | train |
7a06246878aa3b4e8a5460f6756c6c888704f6c8 | diff --git a/src/LiveDevelopment/LiveDevelopment.js b/src/LiveDevelopment/LiveDevelopment.js
index <HASH>..<HASH> 100644
--- a/src/LiveDevelopment/LiveDevelopment.js
+++ b/src/LiveDevelopment/LiveDevelopment.js
@@ -446,9 +446,11 @@ define(function LiveDevelopment(require, exports, module) {
* @param {Document} do... | Fix doc-out-of-sync handling for non-live HTML documents and generalize the logic so it will work for any non-live doc | adobe_brackets | train |
918fafd6d83458c815d45c683e248c666130ace6 | diff --git a/lib/rbBinaryCFPropertyList.rb b/lib/rbBinaryCFPropertyList.rb
index <HASH>..<HASH> 100644
--- a/lib/rbBinaryCFPropertyList.rb
+++ b/lib/rbBinaryCFPropertyList.rb
@@ -342,7 +342,7 @@ module CFPropertyList
nbytes = 0
nbytes += 2 if int > 0xE # 2 bytes int
- nbytes += 2 if int > 0xFF # 3 ... | a bugfix for data with > <I> bytes (type byte size wasn't calculcated correctly) | ckruse_CFPropertyList | train |
8214c4899325f0258c40c607f53639935c1242e3 | diff --git a/lol_scraper/match_downloader.py b/lol_scraper/match_downloader.py
index <HASH>..<HASH> 100644
--- a/lol_scraper/match_downloader.py
+++ b/lol_scraper/match_downloader.py
@@ -113,17 +113,14 @@ def download_matches(match_downloaded_callback, end_of_time_slice_callback, conf
for tier in Tier.eq... | Made the exit more responsive in case it was issued while downloading players | MakersF_LoLScraper | train |
0c1d7a085941f812d0555ec8a0e9f046c2ea29d3 | diff --git a/spec/spec.node.js b/spec/spec.node.js
index <HASH>..<HASH> 100644
--- a/spec/spec.node.js
+++ b/spec/spec.node.js
@@ -1,10 +1,11 @@
-
+process.mixin(GLOBAL, require("sys"))
+var posix = require("posix");
__loading__ = []
__loadDelay__ = 800
readFile = function(path, callback) {
__loading__.push(pat... | got the tests to run, but not pass | expressjs_express | train |
7c417dba7202c4fde006a1d3959cee8a67aef0bc | diff --git a/src/main/java/com/blackducksoftware/integration/hub/bdio/simple/BdioWriter.java b/src/main/java/com/blackducksoftware/integration/hub/bdio/simple/BdioWriter.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/blackducksoftware/integration/hub/bdio/simple/BdioWriter.java
+++ b/src/main/java/com/blackdu... | removing flushable as it really doesn't make sense | blackducksoftware_integration-bdio | train |
aaa6a0341ed78a8d8b6652b153686e8a5ef4f080 | diff --git a/lib/phusion_passenger/dependencies.rb b/lib/phusion_passenger/dependencies.rb
index <HASH>..<HASH> 100644
--- a/lib/phusion_passenger/dependencies.rb
+++ b/lib/phusion_passenger/dependencies.rb
@@ -403,6 +403,8 @@ module Dependencies # :nodoc: all
dep.install_command = "apt-get install libaprutil1-dev... | Add installation instructions for APU on RedHat-based systems. | phusion_passenger | train |
12e503339001dbd1b65e8f975bbcaba2205d6f8e | diff --git a/examples/dev-kits/main.js b/examples/dev-kits/main.js
index <HASH>..<HASH> 100644
--- a/examples/dev-kits/main.js
+++ b/examples/dev-kits/main.js
@@ -4,9 +4,9 @@ module.exports = {
ember: {
id: 'ember',
title: 'Ember',
- url: 'https://deploy-preview-9210--storybookjs.netlify.app/emb... | CHANGE the refs of dev-kit example to the next branch | storybooks_storybook | train |
f45531d1904d5c7c8e02c9ee18957a47ef39d3cc | diff --git a/jws/jws_test.go b/jws/jws_test.go
index <HASH>..<HASH> 100644
--- a/jws/jws_test.go
+++ b/jws/jws_test.go
@@ -1,6 +1,7 @@
package jws_test
import (
+ "bufio"
"bytes"
"crypto/ecdsa"
"crypto/ed25519"
@@ -27,6 +28,13 @@ const badValue = "%badvalue%"
func TestParse(t *testing.T) {
t.Parallel()
+... | Force tests to use unoptimized path | lestrrat-go_jwx | train |
2b3590cf61597067aaa4868c06d7efa936236a7e | diff --git a/stanza/models/common/doc.py b/stanza/models/common/doc.py
index <HASH>..<HASH> 100644
--- a/stanza/models/common/doc.py
+++ b/stanza/models/common/doc.py
@@ -499,7 +499,10 @@ class Sentence(StanzaObject):
def to_dict(self):
""" Dumps the sentence into a list of dictionary for each token in th... | a good temporary solution for ner dumping and printing | stanfordnlp_stanza | train |
4d8280acca782897dbf4439daa417f39af2466bd | diff --git a/pkg/scheduler/metrics/metrics.go b/pkg/scheduler/metrics/metrics.go
index <HASH>..<HASH> 100644
--- a/pkg/scheduler/metrics/metrics.go
+++ b/pkg/scheduler/metrics/metrics.go
@@ -145,7 +145,7 @@ var (
PreemptionAttempts = metrics.NewCounter(
&metrics.CounterOpts{
Subsystem: SchedulerSubsystem,... | rename metric scheduler_total_preemption_attempts to scheduler_preemption_attempts_total as counter metrics should have _total suffix. | kubernetes_kubernetes | train |
6721b3451b31ddd94e6060cdab72af213cfef6bb | diff --git a/belpy/statements.py b/belpy/statements.py
index <HASH>..<HASH> 100644
--- a/belpy/statements.py
+++ b/belpy/statements.py
@@ -228,14 +228,14 @@ class ActivityModification(Statement):
self.relationship = relationship
self.activity = activity
- def monomers(self, model):
- monom... | Fixed monomers method for ActivityModification | sorgerlab_indra | train |
f9909e8f080283af2aacacd6068a66ce076ba972 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -93,7 +93,6 @@ for accessing Google's Cloud Platform services such as Google BigQuery.
'configparser>=3.5.0',
'mock>=2.0.0',
'future>=0.16.0',
- 'futures>=3.0.5',
'google-cloud>=0.30.0',
'google-api... | Don't require `futures` when installing under Python 3 | googledatalab_pydatalab | train |
09bf4108186e2803b3307c8957a3be60fdaf16d0 | diff --git a/tensor2tensor/models/transformer.py b/tensor2tensor/models/transformer.py
index <HASH>..<HASH> 100644
--- a/tensor2tensor/models/transformer.py
+++ b/tensor2tensor/models/transformer.py
@@ -2428,8 +2428,9 @@ def update_hparams_for_tpu(hparams):
# this hyperparameter is ignored.
hparams.max_length = 6... | never increase batch size in update_hparams_for_tpu
PiperOrigin-RevId: <I> | tensorflow_tensor2tensor | train |
e40f2dadafc459ea9ecafff17ac167bef9331cf3 | diff --git a/model/relation/repository/rdf/RdfMediaRelationRepository.php b/model/relation/repository/rdf/RdfMediaRelationRepository.php
index <HASH>..<HASH> 100644
--- a/model/relation/repository/rdf/RdfMediaRelationRepository.php
+++ b/model/relation/repository/rdf/RdfMediaRelationRepository.php
@@ -70,6 +70,10 @@ cl... | Moved exception sniffer into first line of method | oat-sa_extension-tao-mediamanager | train |
a60be15655180bcdec1c0b041eb08bf81a177e26 | diff --git a/spyder/widgets/editor.py b/spyder/widgets/editor.py
index <HASH>..<HASH> 100644
--- a/spyder/widgets/editor.py
+++ b/spyder/widgets/editor.py
@@ -2746,7 +2746,7 @@ def test():
import time
t0 = time.time()
test.load(osp.join(spyder_dir, "widgets", "editor.py"))
- test.load(osp.join(spyd... | Change a path to explorer/widgets.py in editor test. | spyder-ide_spyder | train |
f2cd51bdc09471ddce39a866d6f6dff5124b35c0 | diff --git a/base/app/models/activity_object.rb b/base/app/models/activity_object.rb
index <HASH>..<HASH> 100644
--- a/base/app/models/activity_object.rb
+++ b/base/app/models/activity_object.rb
@@ -52,7 +52,8 @@ class ActivityObject < ActiveRecord::Base
:through => :activity_object_holders,
:so... | Fill owner_id and user_author_id in ActivityObject | ging_social_stream | train |
4843eff97ede2c0807b26aa5b2ffe17f13c2b1ad | diff --git a/cmd/speedboat/main.go b/cmd/speedboat/main.go
index <HASH>..<HASH> 100644
--- a/cmd/speedboat/main.go
+++ b/cmd/speedboat/main.go
@@ -102,6 +102,8 @@ func action(cc *cli.Context) error {
// - Spawn VUs that:
// - Sleep until they're scheduled to start
// - Expire at the projected end of their... | [docs] TODO: Account for VU ramping too | loadimpact_k6 | train |
ae93789d9ad9095ca21784287464b760db12a095 | diff --git a/railties/lib/rails/application/configuration.rb b/railties/lib/rails/application/configuration.rb
index <HASH>..<HASH> 100644
--- a/railties/lib/rails/application/configuration.rb
+++ b/railties/lib/rails/application/configuration.rb
@@ -21,6 +21,10 @@ module Rails
@consider_all_requests_local = t... | Move middlewares to the Application level. If you want to modify the middleware, either use Rails.application.config.middleware or modify it in an initializer (if you need to set it relative to user-specified middleware). | rails_rails | train |
bc4a4304dad5bad143e8263a99fc73b4d4770183 | diff --git a/indra/preassembler/hierarchy_manager.py b/indra/preassembler/hierarchy_manager.py
index <HASH>..<HASH> 100644
--- a/indra/preassembler/hierarchy_manager.py
+++ b/indra/preassembler/hierarchy_manager.py
@@ -135,14 +135,18 @@ class HierarchyManager(object):
return False
@functools32.lru_c... | Update partof to use db with id | sorgerlab_indra | train |
a6e169455decebde1816ecad8914bdd484f40603 | diff --git a/gwpy/tests/test_array.py b/gwpy/tests/test_array.py
index <HASH>..<HASH> 100644
--- a/gwpy/tests/test_array.py
+++ b/gwpy/tests/test_array.py
@@ -720,9 +720,9 @@ class TestArray2D(TestSeries):
exclude=['epoch'])
# test dual slice returns type(self) with metadata
- subarray = ... | tests: fixed some pep8 issues | gwpy_gwpy | train |
5c937f350cde688f8e6d0fec3ff1963461b22b29 | diff --git a/src/Infrastructure/DataAccess/Finder/Elasticsearch/Projection/MixedProjectionFinder.php b/src/Infrastructure/DataAccess/Finder/Elasticsearch/Projection/MixedProjectionFinder.php
index <HASH>..<HASH> 100644
--- a/src/Infrastructure/DataAccess/Finder/Elasticsearch/Projection/MixedProjectionFinder.php
+++ b/s... | fixed MixedProjectionFinder to be aware of @type prefixes. | honeybee_honeybee | train |
e1c14b3ca245fd06ef538005cd3a250904be5b4c | diff --git a/configs/network.go b/configs/network.go
index <HASH>..<HASH> 100644
--- a/configs/network.go
+++ b/configs/network.go
@@ -42,6 +42,12 @@ type Network struct {
// HostInterfaceName is a unique name of a veth pair that resides on in the host interface of the
// container.
HostInterfaceName string `json... | Hairpin NAT network configuration
Offer the ability to enable hairpin NAT on a per network basis, while
keeping it disable by default as it is unsupported by older kernel. | opencontainers_runc | train |
a765bfd71450b72bb8f0ea7c6d1d45ea3b08e017 | diff --git a/src/main/java/com/buschmais/jqassistant/scm/maven/AnalyzeMojo.java b/src/main/java/com/buschmais/jqassistant/scm/maven/AnalyzeMojo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/buschmais/jqassistant/scm/maven/AnalyzeMojo.java
+++ b/src/main/java/com/buschmais/jqassistant/scm/maven/AnalyzeMojo.ja... | #<I> added severity support for concepts | buschmais_jqa-maven-plugin | train |
7c441ee4b3d37fd5fa4ebe25cc441e2fbdc9d2df | diff --git a/openquake/baselib/general.py b/openquake/baselib/general.py
index <HASH>..<HASH> 100644
--- a/openquake/baselib/general.py
+++ b/openquake/baselib/general.py
@@ -54,7 +54,6 @@ def cached_property(method):
name = method.__name__
def newmethod(self):
- print('called************')
... | Removed accidental print [skip CI] | gem_oq-engine | train |
f5e450342d3700bb96c389fffcbe14f6cb598752 | diff --git a/ui/src/shared/components/AutoRefresh.js b/ui/src/shared/components/AutoRefresh.js
index <HASH>..<HASH> 100644
--- a/ui/src/shared/components/AutoRefresh.js
+++ b/ui/src/shared/components/AutoRefresh.js
@@ -27,6 +27,9 @@ const AutoRefresh = ComposedComponent => {
}
componentWillReceiveProps(next... | check if preventLoad has updated | influxdata_influxdb | train |
05f1b2c3b08914772978e70017ff875cbcfc36f9 | diff --git a/servers/web.js b/servers/web.js
index <HASH>..<HASH> 100644
--- a/servers/web.js
+++ b/servers/web.js
@@ -312,6 +312,8 @@ var web = function(api, options, next){
var apiPathParts = connection.rawConnection.parsedURL.pathname.split('/');
var filePathParts = connection.rawConnection.parsedURL.pathn... | Request body, unfiltered query parameters and files are saved under connection.rawConnection.params | actionhero_actionhero | train |
b388afec415e2e340178474ca5ef98e633b713cf | diff --git a/texture.js b/texture.js
index <HASH>..<HASH> 100644
--- a/texture.js
+++ b/texture.js
@@ -47,8 +47,8 @@ function updateTexture2D (ctx, texture, opts) {
const PixelFormat = ctx.PixelFormat
let data = null
- let width = 0
- let height = 0
+ let width = opts.width
+ let height = opts.height
let... | Change how mipmapping works for texture 2D | pex-gl_pex-context | train |
46b965edba6f0238b08baeb69b0f512171bc8e5b | diff --git a/cake/libs/configure.php b/cake/libs/configure.php
index <HASH>..<HASH> 100644
--- a/cake/libs/configure.php
+++ b/cake/libs/configure.php
@@ -91,11 +91,21 @@ class Configure extends Object {
if (strpos($name, '.') === false) {
$_this->{$name} = $value;
} else {
- $names = explode('.', $name... | Refactoring Configure::read/Configure::write so keys with <= 2 keys read/write faster. | cakephp_cakephp | train |
37e372c1f9f958296e90be0c7658183a665e413f | diff --git a/helios-tools/src/main/java/com/spotify/helios/cli/command/MultiTargetControlCommand.java b/helios-tools/src/main/java/com/spotify/helios/cli/command/MultiTargetControlCommand.java
index <HASH>..<HASH> 100644
--- a/helios-tools/src/main/java/com/spotify/helios/cli/command/MultiTargetControlCommand.java
+++ ... | MultiTargetControlCommand: Add explanatory comment | spotify_helios | train |
96fee387db7982087d9b563be942f8105aa697d0 | diff --git a/code/model/OrderModifier.php b/code/model/OrderModifier.php
index <HASH>..<HASH> 100644
--- a/code/model/OrderModifier.php
+++ b/code/model/OrderModifier.php
@@ -331,7 +331,7 @@ class OrderModifier extends OrderAttribute {
* @return String
**/
public function RemoveLink() {
- return ShoppingCart:... | class name is a required argument here. | silvershop_silvershop-core | train |
12455c78865e2fda2730563b6fed09493eb7a894 | diff --git a/src/portpicker.py b/src/portpicker.py
index <HASH>..<HASH> 100755
--- a/src/portpicker.py
+++ b/src/portpicker.py
@@ -97,7 +97,7 @@ def PickUnusedPort(pid=None):
port = None
# Provide access to the portserver on an opt-in basis.
if 'PORTSERVER_ADDRESS' in os.environ:
- port = _GetPortFromPortSe... | Make GetPortFromPortServer() a public API.
It was formerly internal only.
Normal users should just use PickUnusedPort() but there are rare times
when a test framework _only_ wants a port if it came from a specific server. | google_python_portpicker | train |
9559b3860bb8e30db2b2a6433463f1c738711f9e | diff --git a/test_autofit/graphical/regression/test_static.py b/test_autofit/graphical/regression/test_static.py
index <HASH>..<HASH> 100644
--- a/test_autofit/graphical/regression/test_static.py
+++ b/test_autofit/graphical/regression/test_static.py
@@ -49,11 +49,12 @@ def make_centre():
return af.GaussianPrior(m... | test to insure cavity logic works for multiple | rhayes777_PyAutoFit | train |
5e1e3815cba73d93d9e59cac83a692b3b9b96f74 | diff --git a/src/Parser/Anime/AnimeParser.php b/src/Parser/Anime/AnimeParser.php
index <HASH>..<HASH> 100644
--- a/src/Parser/Anime/AnimeParser.php
+++ b/src/Parser/Anime/AnimeParser.php
@@ -454,11 +454,7 @@ class AnimeParser implements ParserInterface
$ranked = str_replace(
'#',
'',
... | bug fix for anime aired date parser | jikan-me_jikan | train |
c0b69cee437b91638e296633727ebd03a2b217b2 | diff --git a/openquake/hazardlib/tests/gsim/fukushima_tanaka_1990_test.py b/openquake/hazardlib/tests/gsim/fukushima_tanaka_1990_test.py
index <HASH>..<HASH> 100644
--- a/openquake/hazardlib/tests/gsim/fukushima_tanaka_1990_test.py
+++ b/openquake/hazardlib/tests/gsim/fukushima_tanaka_1990_test.py
@@ -17,31 +17,23 @@
... | Ported some GMPE test | gem_oq-engine | train |
0c110dca9ce181a3e21df70c034617bf447fb63a | diff --git a/library/WT/Family.php b/library/WT/Family.php
index <HASH>..<HASH> 100644
--- a/library/WT/Family.php
+++ b/library/WT/Family.php
@@ -44,13 +44,15 @@ class WT_Family extends WT_GedcomRecord {
// Fetch husband and wife
if (preg_match('/^1 HUSB @(.+)@/m', $gedcom.$pending, $match)) {
$this->husb = ... | Rollback some ideas about always returning gedcom records, even for invalid links. | fisharebest_webtrees | train |
50d840f81b6e3794f53f5bf7ec60d2d2d1e6785e | diff --git a/expression/builtin_compare.go b/expression/builtin_compare.go
index <HASH>..<HASH> 100644
--- a/expression/builtin_compare.go
+++ b/expression/builtin_compare.go
@@ -385,14 +385,18 @@ func ResolveType4Between(args [3]Expression) types.EvalType {
hasTemporal := false
if cmpTp == types.ETString {
- fo... | planner: fix incorrect duration between compare (#<I>) | pingcap_tidb | train |
7b50c3806688eb054650e41d27a858848fc79a38 | diff --git a/ui/lang/kur-ckb.js b/ui/lang/kur-ckb.js
index <HASH>..<HASH> 100644
--- a/ui/lang/kur-ckb.js
+++ b/ui/lang/kur-ckb.js
@@ -18,10 +18,10 @@ export default {
refresh: "تازەکردنەوە"
},
date: {
- days: "شەممە_یەک شەممە_دووشەممە_سێ شەممە_چوار شەممە_پێنج شەممە_هەینی".split(
+ days: "یەک شەممە_دوو... | Added shortened days to fix QDate bug (#<I>)
since we don't shorten days in Kurdish it caused QDate UI bugs. I created shortened days(which we don't officially have) to avoid breaking Quasar components | quasarframework_quasar | train |
295526e68b6d5916adeba11de9e2bec9f116627d | diff --git a/lib/bugsnag/middleware/delayed_job.rb b/lib/bugsnag/middleware/delayed_job.rb
index <HASH>..<HASH> 100644
--- a/lib/bugsnag/middleware/delayed_job.rb
+++ b/lib/bugsnag/middleware/delayed_job.rb
@@ -20,8 +20,8 @@ module Bugsnag::Middleware
job_data[:created_at] = job.created_at if job.respond_to?(:... | DelayedJob Rewrite: Style concerns | bugsnag_bugsnag-ruby | train |
5c8a4e3deb228acd6ec612b5b144d74cf5389700 | diff --git a/src/Symfony/Component/Mime/Part/AbstractMultipartPart.php b/src/Symfony/Component/Mime/Part/AbstractMultipartPart.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/Mime/Part/AbstractMultipartPart.php
+++ b/src/Symfony/Component/Mime/Part/AbstractMultipartPart.php
@@ -11,7 +11,6 @@
namespace Sy... | [Mime] removed the 2 parts constraints on Multipart (not true for DataFormPart for instance) | symfony_symfony | train |
7cc4c145329e81d8b373a37694d050aa197c3699 | diff --git a/lib/dm-core/spec/lib/adapter_helpers.rb b/lib/dm-core/spec/lib/adapter_helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/dm-core/spec/lib/adapter_helpers.rb
+++ b/lib/dm-core/spec/lib/adapter_helpers.rb
@@ -18,6 +18,8 @@ module DataMapper
def describe_adapter(kind, &block)
describe("wi... | Add #adapter and #repository methods to adapter shared specs | datamapper_dm-core | train |
69b29ed966349ee9fcac68008d2ab28ce35175d6 | diff --git a/pyderman/drivers/chrome.py b/pyderman/drivers/chrome.py
index <HASH>..<HASH> 100644
--- a/pyderman/drivers/chrome.py
+++ b/pyderman/drivers/chrome.py
@@ -11,10 +11,16 @@ _base_download = "https://chromedriver.storage.googleapis.com/%s/chromedriver_%s
def get_url(
version: str = "latest", _os: str | N... | Chrome download fix (#<I>)
* adding test for #<I>
* fix for #<I>
* removing f-strings for older python compatability
* slightly cleaner regex
* Adding another test for #<I> to ensure versions that should not resolve still raise exception | shadowmoose_chrome_driver | train |
2c3ce811f901aa21b6a7f48b28e21f3c7e95d834 | diff --git a/template/app/controller/Comments.js b/template/app/controller/Comments.js
index <HASH>..<HASH> 100644
--- a/template/app/controller/Comments.js
+++ b/template/app/controller/Comments.js
@@ -683,7 +683,9 @@ Ext.define('Docs.controller.Comments', {
userSubscribed: Docs.commentSubscriptio... | Notify when posting comment to inherited member. | senchalabs_jsduck | train |
9cecf1430e0f06dace24155502bd8e66315545d5 | diff --git a/ext/nio4r/extconf.rb b/ext/nio4r/extconf.rb
index <HASH>..<HASH> 100644
--- a/ext/nio4r/extconf.rb
+++ b/ext/nio4r/extconf.rb
@@ -15,6 +15,7 @@ require "mkmf"
have_header("unistd.h")
$defs << "-DEV_USE_LINUXAIO" if have_header("linux/aio_abi.h")
+$defs << "-DEV_USE_IOURING" if have_header("lin... | Define EV_USE_IOURING if header is present | socketry_nio4r | train |
c2da7146f8df95e88ba463cf39010ab52a1ce2fe | diff --git a/kie-test-util/src/main/java/org/kie/test/util/db/PersistenceUtil.java b/kie-test-util/src/main/java/org/kie/test/util/db/PersistenceUtil.java
index <HASH>..<HASH> 100644
--- a/kie-test-util/src/main/java/org/kie/test/util/db/PersistenceUtil.java
+++ b/kie-test-util/src/main/java/org/kie/test/util/db/Persis... | DROOLS-<I> Added com.edb driver handling to PersistenceUtil.useTransactions() method. (#<I>) | kiegroup_drools | train |
01c9e6f9ad1f94094296ced5a15bd06577355dc1 | diff --git a/core/src/main/java/com/crawljax/core/configuration/CrawlAttribute.java b/core/src/main/java/com/crawljax/core/configuration/CrawlAttribute.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/crawljax/core/configuration/CrawlAttribute.java
+++ b/core/src/main/java/com/crawljax/core/configuration/C... | fixing typo of comment in CrawlAttribute | crawljax_crawljax | train |
8dc5d3d3a18427c6b74a48d12026d9927b2c470b | diff --git a/includes/class-kirki-field.php b/includes/class-kirki-field.php
index <HASH>..<HASH> 100644
--- a/includes/class-kirki-field.php
+++ b/includes/class-kirki-field.php
@@ -292,21 +292,12 @@ if ( ! class_exists( 'Kirki_Field' ) ) {
* @access protected
*/
protected function set_capability() {
-
... | remove extra code for capabilities. Not needed, it's too much. | aristath_kirki | train |
6cc3f47d466b7c6dda57d4fb8abb784dd278c495 | diff --git a/middleware/autopath/autopath.go b/middleware/autopath/autopath.go
index <HASH>..<HASH> 100644
--- a/middleware/autopath/autopath.go
+++ b/middleware/autopath/autopath.go
@@ -27,8 +27,8 @@ AutoPathFunc. Note the searchpath must be ending with the empty string.
I.e:
-func (m Middleware ) AutoPath(state ... | middleware/authpath: Fix return from k8s mw (#<I>)
* middleware/authpath: Fix return from k8s mw
Return the correct search path from the kubernetes' AutoPath function.
Based on preliminary discussion in #<I>
* PodWithIP can be private
Fix and add docs to functions.
* CR: remove the error from AutoPathFunc | coredns_coredns | train |
c9c118aa86a1ff473b94dddd7fb28d640837e194 | diff --git a/src/main/java/redis/clients/jedis/params/GeoRadiusParam.java b/src/main/java/redis/clients/jedis/params/GeoRadiusParam.java
index <HASH>..<HASH> 100644
--- a/src/main/java/redis/clients/jedis/params/GeoRadiusParam.java
+++ b/src/main/java/redis/clients/jedis/params/GeoRadiusParam.java
@@ -65,7 +65,7 @@ pub... | byte[] conversion for numbers in Params classes (#<I>)
This would also be required when upgrading to JDK <I>. | xetorthio_jedis | train |
1168510061ed21a71ec1a958b8b9e63c4125882e | diff --git a/packages/neos-ui-redux-store/src/UI/LeftSideBar/index.js b/packages/neos-ui-redux-store/src/UI/LeftSideBar/index.js
index <HASH>..<HASH> 100644
--- a/packages/neos-ui-redux-store/src/UI/LeftSideBar/index.js
+++ b/packages/neos-ui-redux-store/src/UI/LeftSideBar/index.js
@@ -1,6 +1,6 @@
import {createAction... | BUGFIX: Fix initial leftsidebar state not being initialized correctly | neos_neos-ui | train |
882da860ea66da60d213d7f6ae8e88d76702c94a | diff --git a/ltm.go b/ltm.go
index <HASH>..<HASH> 100644
--- a/ltm.go
+++ b/ltm.go
@@ -927,6 +927,7 @@ type Monitor struct {
Interval int
IPDSCP int
ManualResume bool
+ MonitorType string
Password string
ReceiveString string
ReceiveDisable string
@@ -950,6 +951,7 @@ type monitorDTO... | Improve monitor management using monitorType Fixes #<I>
The management of monitors used a limited set of parent monitors, which in
inaccurately restricts which parents are able to be used. Here we adjust that
notion by adding a new monitorType field that is not included in the json, but
used during the calls to creat... | scottdware_go-bigip | train |
e809f6b3c42a498fe632c219cf60592d238cf17d | diff --git a/app/scripts/HeatmapTiledPixiTrack.js b/app/scripts/HeatmapTiledPixiTrack.js
index <HASH>..<HASH> 100644
--- a/app/scripts/HeatmapTiledPixiTrack.js
+++ b/app/scripts/HeatmapTiledPixiTrack.js
@@ -1063,6 +1063,7 @@ class HeatmapTiledPixiTrack extends TiledPixiTrack {
base = document.createElement('g');... | Created the RasterTile track | higlass_higlass | train |
305c5832ee132544930b980df33d7b75f7aaa678 | diff --git a/src/main/java/clarity/decoder/prop/Int64Decoder.java b/src/main/java/clarity/decoder/prop/Int64Decoder.java
index <HASH>..<HASH> 100644
--- a/src/main/java/clarity/decoder/prop/Int64Decoder.java
+++ b/src/main/java/clarity/decoder/prop/Int64Decoder.java
@@ -8,6 +8,20 @@ public class Int64Decoder implements... | quick "fix" for replays encoding int<I> against tickcount X( | skadistats_clarity | train |
92269c4924a3be59ab9a0d9c9d53f57fada710e3 | diff --git a/src/org/kocakosm/pitaya/util/XObjects.java b/src/org/kocakosm/pitaya/util/XObjects.java
index <HASH>..<HASH> 100644
--- a/src/org/kocakosm/pitaya/util/XObjects.java
+++ b/src/org/kocakosm/pitaya/util/XObjects.java
@@ -99,11 +99,24 @@ public final class XObjects
return Arrays.equals((double[]) a, (doubl... | XObjects#equals can now be used to compare multi-dimensional arrays | kocakosm_pitaya | train |
e417e25f2e4bc4f6d8bde83d1ae808ae4217651c | diff --git a/src/js/core/svg.js b/src/js/core/svg.js
index <HASH>..<HASH> 100644
--- a/src/js/core/svg.js
+++ b/src/js/core/svg.js
@@ -28,19 +28,45 @@ export default function (UIkit) {
ready() {
this.svg = $.Deferred();
+ this.init();
- var fn = (() => {
+ },
+
+ ... | fix for safari bug: ::before style on hidden elements | uikit_uikit | train |
6359141c42475c5f7ae1faae47ddf2d413a8c3dd | diff --git a/src/msise00/tests/test_matlab.py b/src/msise00/tests/test_matlab.py
index <HASH>..<HASH> 100644
--- a/src/msise00/tests/test_matlab.py
+++ b/src/msise00/tests/test_matlab.py
@@ -1,25 +1,14 @@
-r"""
-On Windows with Octave >= 5, you may need to add to PATH like:
- C:\Octave\Octave-5.1.0.0\mingw64\bin
-to... | update matlab to use runtests() from pytest | scivision_msise00 | train |
97a92f40c60b83349376a3c6958faef5aafe806f | diff --git a/src/com/mebigfatguy/fbcontrib/detect/JAXRSIssues.java b/src/com/mebigfatguy/fbcontrib/detect/JAXRSIssues.java
index <HASH>..<HASH> 100644
--- a/src/com/mebigfatguy/fbcontrib/detect/JAXRSIssues.java
+++ b/src/com/mebigfatguy/fbcontrib/detect/JAXRSIssues.java
@@ -65,6 +65,7 @@ public class JAXRSIssues extend... | process @Consumes on the class | mebigfatguy_fb-contrib | train |
7523123034533eae47b04e8bf6c44b810a3fc40b | diff --git a/components/common/src/main/java/org/openengsb/core/common/transformations/TransformationUtils.java b/components/common/src/main/java/org/openengsb/core/common/transformations/TransformationUtils.java
index <HASH>..<HASH> 100644
--- a/components/common/src/main/java/org/openengsb/core/common/transformations... | [OPENENGSB-<I>] small formatting fix | openengsb_openengsb | train |
a39fd27aa44ab73a4add7a8fcebff22cb795bb18 | diff --git a/src/apply/applyContent.js b/src/apply/applyContent.js
index <HASH>..<HASH> 100644
--- a/src/apply/applyContent.js
+++ b/src/apply/applyContent.js
@@ -5,8 +5,7 @@ import {
} from '../types';
import getCallbackFactory from '../getCallbackFactory';
-import { getHooksRunner, getControllersBellow, getContro... | Export destroy, refactor getters | manvalls_jwit | train |
f20b526903a4fa1abbfa080fcef1e6602f06173e | diff --git a/lib/bootstrap.js b/lib/bootstrap.js
index <HASH>..<HASH> 100644
--- a/lib/bootstrap.js
+++ b/lib/bootstrap.js
@@ -38,7 +38,7 @@ module.exports = function(options, db) {
}, function(err, file) {
if (!file) {
- fs.createReadStream(appPath + '/public/lib/bootstrap/dist/c... | update path to bower_components | linnovate_meanio | train |
eccbaffcc533cc864eb9171119b142594729f37d | diff --git a/lib/config/core.rb b/lib/config/core.rb
index <HASH>..<HASH> 100644
--- a/lib/config/core.rb
+++ b/lib/config/core.rb
@@ -88,7 +88,7 @@ module ActiveScaffold::Config
# create a new default columns datastructure, since it doesn't make sense before now
column_names = self.model.columns.collect{... | associated records were not being updated because of how rails redefines find_all for collections. i changed it to use select instead. fixes issue #<I>.
git-svn-id: <URL> | activescaffold_active_scaffold | train |
fa3f2cd53bd6e1ef9ade707a3d987a0395efd090 | diff --git a/lib/class.ext_utorrent.php b/lib/class.ext_utorrent.php
index <HASH>..<HASH> 100644
--- a/lib/class.ext_utorrent.php
+++ b/lib/class.ext_utorrent.php
@@ -235,7 +235,7 @@ class ext_utorrent implements LinfoExtension {
$info['TORRENT_SEEDS_CONNECTED'].'/'.$info['TORRENT_PEERS_SWARM'],
LinfoCommon... | Utorrent extension fix
If ratio rounded turns out to be <I>, return in string so the field doesnt
disappear due to how horrible the createtable function is. Need to refactor that
at some point | jrgp_linfo | train |
441647cb8e493c8f039bb119479d8d41b1bee772 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -331,3 +331,5 @@ texinfo_documents = [
# If true, do not generate a @detailmenu in the "Top" node's menu.
# texinfo_no_detailmenu = False
+
+linkcheck_ignore = [r'https://www\.youtube\.com/watch\?v=[\d\w\-_... | MNT: Ignore youtube links for linkchecker
These are triggering a lot of unnecessary failures, and let's be honest,
youtube links aren't going anywhere. | Unidata_MetPy | train |
4b39a531bfb5a0386451f9d1df58cc0e8df04776 | diff --git a/pug/nlp/djdb.py b/pug/nlp/djdb.py
index <HASH>..<HASH> 100644
--- a/pug/nlp/djdb.py
+++ b/pug/nlp/djdb.py
@@ -1417,13 +1417,13 @@ def delete_in_batches(queryset, batch_size=1000, verbosity=1):
N = queryset.count()
if verbosity:
- print('Deleting %r records from %r...' % (N, queryset))
+ ... | fix bug and more concise verbosity in delete_in_batches | hobson_pug | train |
e2f6188cecaa510008d56ce68be0665be8325464 | diff --git a/sample/src/main/java/com/liulishuo/okdownload/sample/BunchActivity.java b/sample/src/main/java/com/liulishuo/okdownload/sample/BunchActivity.java
index <HASH>..<HASH> 100644
--- a/sample/src/main/java/com/liulishuo/okdownload/sample/BunchActivity.java
+++ b/sample/src/main/java/com/liulishuo/okdownload/sam... | chore: add time log for bunch-activity on demo | lingochamp_okdownload | train |
118eb5f74a5f2ea78ddf712526f75fe3919e63e8 | diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/integrationtest/AbstractHealthEndpointAdditionalPathIntegrationTests.java b/spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure... | Polish AbstractHealthEndpointAdditionalPathIntegrationTests
See gh-<I> | spring-projects_spring-boot | train |
df713f6afb7ec7130ec07e94d6a137a3ea62c5de | diff --git a/src/diff-snapshot.js b/src/diff-snapshot.js
index <HASH>..<HASH> 100644
--- a/src/diff-snapshot.js
+++ b/src/diff-snapshot.js
@@ -240,7 +240,11 @@ function runDiffImageToSnapshot(options) {
const writeDiffProcess = childProcess.spawnSync(
process.execPath, [`${__dirname}/diff-process.js`],
- {... | fix(diff): small default maxBuffer
By default, Node's spawnSync has a maxBuffer of 1 MB. This bumps it up
to <I> MB, which should reduce the chance of diffs on large images
failing. | americanexpress_jest-image-snapshot | train |
a3043e9a73d2f94993d928d4bbbc3dbfee6e85bc | diff --git a/src/Common/Factory/FactoryPropelQueryMethodNameRule.php b/src/Common/Factory/FactoryPropelQueryMethodNameRule.php
index <HASH>..<HASH> 100644
--- a/src/Common/Factory/FactoryPropelQueryMethodNameRule.php
+++ b/src/Common/Factory/FactoryPropelQueryMethodNameRule.php
@@ -48,7 +48,7 @@ class FactoryPropelQuer... | Small fix for FactoryMethodRule | spryker_architecture-sniffer | train |
380524ae2757ccbacf83c77984157a9e9622a220 | diff --git a/cmd/object-api-errors.go b/cmd/object-api-errors.go
index <HASH>..<HASH> 100644
--- a/cmd/object-api-errors.go
+++ b/cmd/object-api-errors.go
@@ -314,10 +314,15 @@ func (e InvalidUploadID) Error() string {
}
// InvalidPart One or more of the specified parts could not be found
-type InvalidPart struct{}... | Unlock read lock on uploadID upon errors (#<I>) | minio_minio | train |
81c7aa120c39b2b6f6413dc181871010e853ccc9 | diff --git a/spec/unit/runner_spec.rb b/spec/unit/runner_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/runner_spec.rb
+++ b/spec/unit/runner_spec.rb
@@ -72,7 +72,7 @@ describe ChefSpec::Runner do
it 'sets the default attributes' do
expect(hash['os']).to eq('chefspec')
- expect(hash['langu... | Update specs to pass with new fauxhai | chefspec_chefspec | train |
5350e74601b2d9bec01625be53242468b9e7c8e1 | diff --git a/xds/internal/xdsclient/controller/controller_test.go b/xds/internal/xdsclient/controller/controller_test.go
index <HASH>..<HASH> 100644
--- a/xds/internal/xdsclient/controller/controller_test.go
+++ b/xds/internal/xdsclient/controller/controller_test.go
@@ -24,11 +24,18 @@ import (
"google.golang.org/grp... | xds/controller: fix test nil panic on stream errors (#<I>) | grpc_grpc-go | train |
eab9c4f3d22d907d728aa0f5918934357866249e | diff --git a/mux.go b/mux.go
index <HASH>..<HASH> 100644
--- a/mux.go
+++ b/mux.go
@@ -111,10 +111,8 @@ func copyRouteConf(r routeConf) routeConf {
c.regexp.queries = append(c.regexp.queries, copyRouteRegexp(q))
}
- c.matchers = make([]matcher, 0, len(r.matchers))
- for _, m := range r.matchers {
- c.matchers =... | Simplify code (#<I>)
Use a single append call instead of a ranged for loop. | gorilla_mux | train |
2619d8ec59d482f3a0f09c28ca9b93c0d0d34eac | diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index <HASH>..<HASH> 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -5,7 +5,7 @@
Changelog
=========
-* 1.2.1 [2017-02-05]: Python 3.6 support
+* 1.2.1 [2017-02-07]: Python 3.6 support
* 1.2.0 [2016-10-28]: Added TmpDir context manager to work with temporary
direc... | Bumped version to <I> | pmacosta_pmisc | train |
3dfd0e3d84e677389b049e3498b91e8e06adb1e6 | diff --git a/h2o-algos/src/main/java/hex/tree/SharedTree.java b/h2o-algos/src/main/java/hex/tree/SharedTree.java
index <HASH>..<HASH> 100755
--- a/h2o-algos/src/main/java/hex/tree/SharedTree.java
+++ b/h2o-algos/src/main/java/hex/tree/SharedTree.java
@@ -469,6 +469,7 @@ public abstract class SharedTree<M extends Shared... | Add assertion for varimp sanity check. | h2oai_h2o-3 | train |
d6bf893b25940fa116061b1b14705f99d1183ab8 | diff --git a/test/downloadingSpec.js b/test/downloadingSpec.js
index <HASH>..<HASH> 100644
--- a/test/downloadingSpec.js
+++ b/test/downloadingSpec.js
@@ -3,11 +3,6 @@ var httpinvoke = require('../httpinvoke-node');
describe('"downloading" option', function() {
this.timeout(10000);
- // TODO after receiving ... | test: downloadingSpec: resolve TODO items | jakutis_httpinvoke | train |
86f65e54007f49588ee88d46444b00007bcddc8a | diff --git a/src/org/parosproxy/paros/extension/manualrequest/ExtensionManualRequestEditor.java b/src/org/parosproxy/paros/extension/manualrequest/ExtensionManualRequestEditor.java
index <HASH>..<HASH> 100644
--- a/src/org/parosproxy/paros/extension/manualrequest/ExtensionManualRequestEditor.java
+++ b/src/org/parospro... | Clear manual request editor dialogues in EDT
Change ExtensionManualRequestEditor to clear the manual request editor
dialogues in the EDT, otherwise it might lead to concurrency issues when
a new session is created/changed. | zaproxy_zaproxy | train |
19ad687325e5a8f4c1a649159de3e7457f2c602b | diff --git a/orderer/mocks/multichain/multichain.go b/orderer/mocks/multichain/multichain.go
index <HASH>..<HASH> 100644
--- a/orderer/mocks/multichain/multichain.go
+++ b/orderer/mocks/multichain/multichain.go
@@ -44,6 +44,12 @@ type ConsenterSupport struct {
// ChainIDVal is the value returned by ChainID()
Chai... | [FAB-<I>] Store most recent block in mock struct
<URL>` and
`WriteBlock()` calls in the mock `ConsenterSupport` structure so as to
make these values easier to retrieve (and some tests easier to write*).
* I will be using this in a test on [FAB-<I>].
Change-Id: If<I>e<I>f<I>c4b<I>fd3f<I> | hyperledger_fabric | train |
bb5857331008639de6bbb0325314655b43bb84b3 | diff --git a/java/Android/com/tamil/Numeral.java b/java/Android/com/tamil/Numeral.java
index <HASH>..<HASH> 100644
--- a/java/Android/com/tamil/Numeral.java
+++ b/java/Android/com/tamil/Numeral.java
@@ -185,7 +185,7 @@ class IndianNumeral {
}
if ( number < 20.0 ) {
- ... | update to Android code that is concomitant with Kalsee-Calculator | Ezhil-Language-Foundation_open-tamil | train |
25ac08672cee2cabd10fd425155e5e7cbca3891b | diff --git a/synapse/link.py b/synapse/link.py
index <HASH>..<HASH> 100644
--- a/synapse/link.py
+++ b/synapse/link.py
@@ -10,8 +10,7 @@ from synapse.eventbus import EventBus
protos = {
'tcp':s_tcp.TcpRelay,
'ssl':s_ssl.SslRelay,
- #'neu+tcp',s_neu.NeuRelay,
- #'local':s_local.LocalProto(),
+ 'local... | local link protocol support for synapse | vertexproject_synapse | train |
1c73a6126052d7e90d98d4d1564c49b2d43d8224 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -111,7 +111,7 @@ function wrap(file, template, data) {
file.contents = through;
} else if (file.isBuffer()) {
data.contents = file.contents.toString();
- file.contents = new Buffer(template(data));
+ file.co... | Replace Buffer constructor with Buffer.from. | eduardolundgren_gulp-umd | train |
3c67654bd855490839d56ac292e567975c2d80cd | diff --git a/library/Services/Library/DatabaseRestorer/DatabaseRestorerToFile.php b/library/Services/Library/DatabaseRestorer/DatabaseRestorerToFile.php
index <HASH>..<HASH> 100644
--- a/library/Services/Library/DatabaseRestorer/DatabaseRestorerToFile.php
+++ b/library/Services/Library/DatabaseRestorer/DatabaseRestorer... | Improve testing library to work with corrupted DB
- Take from config file, as config require DB
- Use namespaced class DatabaseRestorerToFile to not run module autoloader. | OXID-eSales_testing_library | train |
857e2c5cd22b76b6310607efd9aa4997438bb09c | diff --git a/src/Command/PreCommitCommand.php b/src/Command/PreCommitCommand.php
index <HASH>..<HASH> 100644
--- a/src/Command/PreCommitCommand.php
+++ b/src/Command/PreCommitCommand.php
@@ -84,11 +84,13 @@ class PreCommitCommand extends Command
foreach ($changedFiles as $file) {
if (preg_match(Pr... | Fix in pre-commit hook. Order matters!!! | bitban_php-code-quality-tools | train |
05c2d69b3ccef132e19f2b81f2ae194692b80816 | diff --git a/graphistry/plotter.py b/graphistry/plotter.py
index <HASH>..<HASH> 100644
--- a/graphistry/plotter.py
+++ b/graphistry/plotter.py
@@ -84,7 +84,7 @@ class Plotter(object):
:param edge_label: Attribute overriding edge's expanded label text. By default, scrollable list of attribute/value mappings.
... | Fix broken links to palette in docs | graphistry_pygraphistry | train |
eaaf6ed287b5616ebedfa81d1fec0e937fb4125d | diff --git a/ikp3db.py b/ikp3db.py
index <HASH>..<HASH> 100644
--- a/ikp3db.py
+++ b/ikp3db.py
@@ -368,8 +368,7 @@ class IKPdbConnectionHandler(object):
#
class IKPdbQuit(Exception):
- """ A dummy Exception used by debugger to quit debugged program.
- """
+ """A dummy Exception used by debugger to quit deb... | TYPOS: Correct various typos | cmorisse_ikp3db | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.