hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
84b8bcb479cd8e30e6b80788686bb77b92fa80dd | diff --git a/vectors.go b/vectors.go
index <HASH>..<HASH> 100644
--- a/vectors.go
+++ b/vectors.go
@@ -387,18 +387,17 @@ func (x *Vector) Push(y float64) {
return
}
-func (x *Vector) PushFixed(y float64) {
+func (x *Vector) PushFixed(y float64) error {
lenx := len(*x)
- //fmt.Printf("len %d cap: %d\n", lenx, cap... | Updating tests to handle returned error | drewlanenga_govector | train |
11733c6bf1266086b04e13a46e4feed537c5d2cc | diff --git a/ontrack-web/src/app/service/service.buildfilter.js b/ontrack-web/src/app/service/service.buildfilter.js
index <HASH>..<HASH> 100644
--- a/ontrack-web/src/app/service/service.buildfilter.js
+++ b/ontrack-web/src/app/service/service.buildfilter.js
@@ -18,7 +18,12 @@ angular.module('ot.service.buildfilter', [... | Build filter: storing the current filter locally | nemerosa_ontrack | train |
53baa676adb85984b85d4313cba61bb1edcedd09 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -26,6 +26,12 @@ class Mock(object):
def __call__(self, *args, **kwargs):
return Mock()
+ def __div__(self, other):
+ pass
+
+ def __truediv__(self, other):
+ pass
+
@cla... | try to fix RTFD build again | tdsmith_eleven | train |
24b6b478bc2be291b9bc38fce3656b5d60ec6362 | diff --git a/web3/contract.py b/web3/contract.py
index <HASH>..<HASH> 100644
--- a/web3/contract.py
+++ b/web3/contract.py
@@ -1027,7 +1027,7 @@ class ContractEvent:
fromBlock=None,
toBlock="latest",
address=None,
- topics=dict()):
+ topics=list()):
... | Make contract address default for createEvent | ethereum_web3.py | train |
d1d40cc4bbe230161a903c38325d6a48b38cfe15 | diff --git a/lib/gir_ffi/i_repository.rb b/lib/gir_ffi/i_repository.rb
index <HASH>..<HASH> 100644
--- a/lib/gir_ffi/i_repository.rb
+++ b/lib/gir_ffi/i_repository.rb
@@ -109,15 +109,7 @@ module GirFFI
def dependencies namespace
strz = Lib.g_irepository_get_dependencies @gobj, namespace
- return [] i... | Use newly created argument helper method in IRepository implementation. | mvz_gir_ffi | train |
2b58f53708d39f1e3de78b831cd049a90890705e | diff --git a/js/impress.js b/js/impress.js
index <HASH>..<HASH> 100644
--- a/js/impress.js
+++ b/js/impress.js
@@ -16,6 +16,9 @@
* source: http://github.com/bartaz/impress.js/
*/
+/*jshint bitwise:true, curly:true, eqeqeq:true, forin:true, latedef:true, newcap:true,
+ noarg:true, noempty:true, undef:tru... | "making jshint even more happy with custom config" | impress_impress.js | train |
54c68373fb4dbb4272519ba2b856bdc63cc20d6d | diff --git a/installation-bundle/src/Controller/InstallationController.php b/installation-bundle/src/Controller/InstallationController.php
index <HASH>..<HASH> 100644
--- a/installation-bundle/src/Controller/InstallationController.php
+++ b/installation-bundle/src/Controller/InstallationController.php
@@ -12,6 +12,7 @@... | [Installation] Ignore the IncompleteInstallationException in the install tool. | contao_contao | train |
c542975f182af77d66aea1efc8d8b5e2958a371e | diff --git a/spec/facemock/config_spec.rb b/spec/facemock/config_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/facemock/config_spec.rb
+++ b/spec/facemock/config_spec.rb
@@ -175,19 +175,19 @@ describe Facemock::Config do
expect(Facemock::Application.all.count).to eq app_count
expect(Facemock::Use... | :bug: FM-5 : Fixed to bug in test | ogawatti_facemock | train |
0095c37f8650437a5dfe741b8518d4e0f86c7cdc | diff --git a/actor-apps/app-web/src/app/components/ActivitySection.react.js b/actor-apps/app-web/src/app/components/ActivitySection.react.js
index <HASH>..<HASH> 100644
--- a/actor-apps/app-web/src/app/components/ActivitySection.react.js
+++ b/actor-apps/app-web/src/app/components/ActivitySection.react.js
@@ -21,18 +21... | refactor(web): remove dash from functions name; | actorapp_actor-platform | train |
3a0893f8430551e9d75a84e8b16b12921ffd5b19 | diff --git a/openquake/calculators/risk/general.py b/openquake/calculators/risk/general.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/risk/general.py
+++ b/openquake/calculators/risk/general.py
@@ -276,9 +276,9 @@ def fetch_vulnerability_model(job_id, retrofitted=False):
"""
if retrofitted:
- ... | changed signature of fetch_vulnerability_model | gem_oq-engine | train |
e088b319e725d100076905e26880291dad687e9b | diff --git a/sramongo/sra2mongo.py b/sramongo/sra2mongo.py
index <HASH>..<HASH> 100644
--- a/sramongo/sra2mongo.py
+++ b/sramongo/sra2mongo.py
@@ -11,6 +11,7 @@ from logging import INFO, DEBUG
import pandas as pd
import time
from shutil import rmtree
+from glob import glob
from Bio import Entrez
from mongoengine... | Adds logic to remove item from cache if download failed.
Added a new function to the cache object to allow removal of cached
files if the download fails for some reason. | jfear_sramongo | train |
691f254feb94bda19eaf54fbc6de363cd3ee7f5c | diff --git a/src/postfix.js b/src/postfix.js
index <HASH>..<HASH> 100644
--- a/src/postfix.js
+++ b/src/postfix.js
@@ -1,9 +1,9 @@
-
+
var Mexp=require('./lexer.js');
- if(!Array.indexOf)
+ if(!(Array.indexOf || Array.prototype.indexOf))
Array.prototype.indexOf = function (vItem) {
for (var i=0; i... | Improve check for indexOf polyfill. Use triple equals within indexOf implementation. | redhivesoftware_math-expression-evaluator | train |
51943195bffd4511dcdb832c184b7e7c5556c7dc | diff --git a/config.js b/config.js
index <HASH>..<HASH> 100755
--- a/config.js
+++ b/config.js
@@ -48,15 +48,12 @@ if(cluster.isMaster){
}
// file logger
+try{
+ fs.mkdirSync("./log");
+}catch(e){
+ if(e.code != "EEXIST"){ console.log(e); process.exit(); }
+}
configData.logger.transports.push(function(api, wins... | update winston version to fix file logs | actionhero_actionhero | train |
406d047fe84ed063f02f045ae9a0d67ecb45a76a | diff --git a/auto_lens/test_galaxy_prior.py b/auto_lens/test_galaxy_prior.py
index <HASH>..<HASH> 100644
--- a/auto_lens/test_galaxy_prior.py
+++ b/auto_lens/test_galaxy_prior.py
@@ -53,3 +53,12 @@ class TestGalaxyPrior:
instance = MockModelInstance()
with pytest.raises(gp.PriorException):
... | writing test for multiple galaxies | Jammy2211_PyAutoLens | train |
eae81b9c353e25b9317c1d4a3c1f70b60f5e21d2 | diff --git a/lib/rubycritic/source_locator.rb b/lib/rubycritic/source_locator.rb
index <HASH>..<HASH> 100644
--- a/lib/rubycritic/source_locator.rb
+++ b/lib/rubycritic/source_locator.rb
@@ -23,15 +23,11 @@ module Rubycritic
def expand_paths
@user_paths.map do |path|
if File.directory?(path)
- ... | Remove consecutive slashes and useless dots from paths | whitesmith_rubycritic | train |
1df69870b410b12d0665440f387fd968e2a95c40 | diff --git a/Behat/WebContext.php b/Behat/WebContext.php
index <HASH>..<HASH> 100644
--- a/Behat/WebContext.php
+++ b/Behat/WebContext.php
@@ -377,23 +377,49 @@ class WebContext extends DefaultContext
}
/**
+ * @Given /^I add following attributes:$/
+ */
+ public function iAddFollowingAttributes(... | [Attribute] Final fixed in attribute scenarios
- slightly change adding attributes to product
- written additional scenario for adding multiple attributes
- added some waits to prevent errors | Sylius_SyliusResourceBundle | train |
1a9b2d515507ba04600f68fd5a2de996058ebd5c | diff --git a/src/core.js b/src/core.js
index <HASH>..<HASH> 100644
--- a/src/core.js
+++ b/src/core.js
@@ -416,28 +416,45 @@ Crafty.fn = Crafty.prototype = {
/**@
* #.attr
* @comp Crafty Core
- * @sign public this .attr(String property, * value)
+ * @trigger Change - when properties change - {k... | Improve attr documentation
This commit fixes #<I>, it also adds new signatures and more
detailed explanation to the inner workings of attr. | craftyjs_Crafty | train |
15e37abfdeecbf49f61fab0c06003ce4237a1e42 | diff --git a/autopep8.py b/autopep8.py
index <HASH>..<HASH> 100755
--- a/autopep8.py
+++ b/autopep8.py
@@ -2032,39 +2032,39 @@ def fix_multiple_files(filenames, options, output=None):
def main():
"""Tool main."""
- options, args = parse_args(sys.argv[1:])
+ try:
+ options, args = parse_args(sys.arg... | Move catching of KeyboardInterrupt
This necessary for when we use autopep8 via main entry point. | hhatto_autopep8 | train |
82ae4ee219c05fde09b2996992e2736f22396ca5 | diff --git a/lib/logger.js b/lib/logger.js
index <HASH>..<HASH> 100644
--- a/lib/logger.js
+++ b/lib/logger.js
@@ -243,7 +243,7 @@ var proto = {
dbug('%s filtered message [%s]', this._name, record.message);
}
- if (promises.length > 2) {
+ if (promises.length > 1) {
return Promise.all(promise... | fix promises if there were exactly 2 handlers | seanmonstar_intel | train |
81580efdccb2b8ced4200443baba21bc76a4b6c7 | diff --git a/spec/models/no_cms/blocks/i18n_blocks_spec.rb b/spec/models/no_cms/blocks/i18n_blocks_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/models/no_cms/blocks/i18n_blocks_spec.rb
+++ b/spec/models/no_cms/blocks/i18n_blocks_spec.rb
@@ -37,11 +37,14 @@ describe NoCms::Blocks::Block do
context "when we have s... | Making sure we can have both translated and untranslated attributes | simplelogica_nocms-blocks | train |
3e56c4a5673663d43e7c321f12fe29d0e9c63f31 | diff --git a/lib/apple_tv_converter/media_converter_adapter.rb b/lib/apple_tv_converter/media_converter_adapter.rb
index <HASH>..<HASH> 100644
--- a/lib/apple_tv_converter/media_converter_adapter.rb
+++ b/lib/apple_tv_converter/media_converter_adapter.rb
@@ -163,6 +163,8 @@ module AppleTvConverter
end
def g... | Updated the selection list outputs to be coherent | gokuu_apple-tv-converter | train |
05af179e8c728199a2ab1879ecece8b8328656e5 | diff --git a/resource_aws_db_instance.go b/resource_aws_db_instance.go
index <HASH>..<HASH> 100644
--- a/resource_aws_db_instance.go
+++ b/resource_aws_db_instance.go
@@ -49,7 +49,6 @@ func resourceAwsDbInstance() *schema.Resource {
"engine_version": &schema.Schema{
Type: schema.TypeString,
Required: ... | provider/aws: Add non-destructive updates to AWS RDS
This introduces non-destructive, in-place upgrades to MultiAZ and Engine Version
attributes of AWS RDS instances. | terraform-providers_terraform-provider-aws | train |
116a8b0f8689f6b14a3f509cca28950299ba74b3 | diff --git a/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCollapserTest.java b/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCollapserTest.java
index <HASH>..<HASH> 100644
--- a/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCollapserTest.java
+++ b/hystrix-core/src/test/java/com/netflix/hystrix... | Increased sleep time to make Timeout work as expected in HystrixCollapserTest | Netflix_Hystrix | train |
803bbbba7065dbe2cd23ac360156f65db5bd6c92 | diff --git a/galen-java-support/src/test/java/com/galenframework/junit/GalenJUnitTestBaseIT.java b/galen-java-support/src/test/java/com/galenframework/junit/GalenJUnitTestBaseIT.java
index <HASH>..<HASH> 100644
--- a/galen-java-support/src/test/java/com/galenframework/junit/GalenJUnitTestBaseIT.java
+++ b/galen-java-su... | Fix test for test name.
The test name changed because the name of the test class changed in
<I>f4ec<I>a<I>a<I>bc9d<I>e9e<I>b9faafb0. | galenframework_galen | train |
55d4479ff6a78366b7fb887796b35144bb65c029 | diff --git a/lib/httparty/request.rb b/lib/httparty/request.rb
index <HASH>..<HASH> 100644
--- a/lib/httparty/request.rb
+++ b/lib/httparty/request.rb
@@ -71,6 +71,7 @@ module HTTParty
def perform(&block)
validate
setup_raw_request
+ chunked_body = nil
self.last_response = http.request(... | Horrible hack to fix chunked bodies on <I>. | jnunemaker_httparty | train |
d2c3fba430a0bacdec18f7c7084376957baf4a80 | diff --git a/jquery.isloading.js b/jquery.isloading.js
index <HASH>..<HASH> 100644
--- a/jquery.isloading.js
+++ b/jquery.isloading.js
@@ -140,7 +140,7 @@
if( "overlay" === this.options.position ) {
- $( ".isloading-overlay" ).remove();
+ $( this.element ).find( ".isloadin... | Allow hide for multiple elements seperately
Updated the hide function so it would make use of the queried element.
This is helpful in situations where you might be making use of multiple overlays on several elements. If you were using multiple elements, previously, and called $({query}).isLoading("hide"); all overl... | hekigan_is-loading | train |
26ab084928c75f2cde335f229e644155de8d9fdd | diff --git a/web/src/main/java/uk/ac/ebi/atlas/transcript/TranscriptsContribution.java b/web/src/main/java/uk/ac/ebi/atlas/transcript/TranscriptsContribution.java
index <HASH>..<HASH> 100644
--- a/web/src/main/java/uk/ac/ebi/atlas/transcript/TranscriptsContribution.java
+++ b/web/src/main/java/uk/ac/ebi/atlas/transcrip... | minor changes (from Robert's comments) | ebi-gene-expression-group_atlas | train |
937c8174f5a3aa416e8457f9fb9b7bbd205ed8cd | diff --git a/lib/Elastica/Query/Ids.php b/lib/Elastica/Query/Ids.php
index <HASH>..<HASH> 100644
--- a/lib/Elastica/Query/Ids.php
+++ b/lib/Elastica/Query/Ids.php
@@ -2,7 +2,7 @@
namespace Elastica\Query;
-use Elastica\Type;
+use Elastica\Type as ElasticaType;
/**
* Ids Query.
@@ -50,7 +50,7 @@ class Ids exte... | adapted Type namespace collision fix for Query\Ids, see PR #<I> | ruflin_Elastica | train |
5bd3c0d0c45740ff3a35aa0b86d70996310b0580 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -39,7 +39,7 @@ exports.plugin = {
const client = await MongoClient.connect(connectionOptions.url, connectionOptions.settings);
const db = await client.db();
const connecti... | Adds obfuscation support for the DNS Seed List Connection Format (+srv) | Marsup_hapi-mongodb | train |
ab68086556b5949229fb04b74264e6b8b65af23a | diff --git a/play/speed_tb.py b/play/speed_tb.py
index <HASH>..<HASH> 100644
--- a/play/speed_tb.py
+++ b/play/speed_tb.py
@@ -4,5 +4,4 @@ import sys
b = typedbytes.PairedInput(sys.stdin)
c = typedbytes.PairedOutput(sys.stdout)
-for x in b:
- c.write(x)
+c.writes(b)
diff --git a/play/speed_tbc.py b/play/speed_tb... | Cleaned up speed test, updated TypedBytes examples with Klaas's suggestions, this requires my patched cTypedBytes | bwhite_hadoopy | train |
c9e48097ece2f2e3b16c6bb726218c7967af4e8c | diff --git a/gson/src/main/java/com/google/gson/JsonSerializationVisitor.java b/gson/src/main/java/com/google/gson/JsonSerializationVisitor.java
index <HASH>..<HASH> 100644
--- a/gson/src/main/java/com/google/gson/JsonSerializationVisitor.java
+++ b/gson/src/main/java/com/google/gson/JsonSerializationVisitor.java
@@ -1... | Do not overwrite a duplicate field value during seriailzation if one those fields is null. | google_gson | train |
fa0beb2593237c9ee1c776249d7aaeb0b118709e | diff --git a/tests/Adapters/WebDavConnectorTest.php b/tests/Adapters/WebDavConnectorTest.php
index <HASH>..<HASH> 100644
--- a/tests/Adapters/WebDavConnectorTest.php
+++ b/tests/Adapters/WebDavConnectorTest.php
@@ -33,10 +33,6 @@ class WebDavConnectorTest extends AbstractTestCase
{
public function testConnect()
... | Allow all tests to run on hhvm | GrahamCampbell_Laravel-Flysystem | train |
6c81f9da0d7f85011e23dd4243ff7b5b6b00189f | diff --git a/agent/consul/config_endpoint.go b/agent/consul/config_endpoint.go
index <HASH>..<HASH> 100644
--- a/agent/consul/config_endpoint.go
+++ b/agent/consul/config_endpoint.go
@@ -256,11 +256,11 @@ func (c *ConfigEntry) ResolveServiceConfig(args *structs.ServiceConfigRequest, r
if !ok {
return fmt.Err... | Fix panic in Resolving service config when proxy-defaults isn't defined yet (#<I>) | hashicorp_consul | train |
5c4dba04ab3f408f270c829613fdb0df923e4caf | diff --git a/src/fuzzysearch/levenshtein_ngram.py b/src/fuzzysearch/levenshtein_ngram.py
index <HASH>..<HASH> 100644
--- a/src/fuzzysearch/levenshtein_ngram.py
+++ b/src/fuzzysearch/levenshtein_ngram.py
@@ -11,27 +11,106 @@ def _expand(subsequence, sequence, max_l_dist):
if not subsequence:
return (0, 0)
... | optimize Levenshtein _expand() for long subsequences | taleinat_fuzzysearch | train |
262c8dd61be2c1ca4e0e40e803cd11acc99429d8 | diff --git a/.scrutinizer.yml b/.scrutinizer.yml
index <HASH>..<HASH> 100644
--- a/.scrutinizer.yml
+++ b/.scrutinizer.yml
@@ -1,4 +1,8 @@
checks:
php:
excluded_dependencies:
- - atoum/atoum
\ No newline at end of file
+ - atoum/atoum
+
+tools:
+ php_cs_fixer:
+ ... | PHP CS Fixer in scrutinizer (#<I>)
* PHP CS Fixer in scrutinizer
* Scrutinizer Auto-Fixes | mapado_rest-client-sdk | train |
ab79b2426370f0422e9428d5cd25ba33f3ebb47f | diff --git a/src/main/java/reactor/core/publisher/FluxFlattenIterable.java b/src/main/java/reactor/core/publisher/FluxFlattenIterable.java
index <HASH>..<HASH> 100644
--- a/src/main/java/reactor/core/publisher/FluxFlattenIterable.java
+++ b/src/main/java/reactor/core/publisher/FluxFlattenIterable.java
@@ -627,7 +627,7 ... | Fix #<I> FlattenIterableSubscriber.isEmpty check (#<I>)
- returned true from isEmpty when iterator had more elements | reactor_reactor-core | train |
9f87fb9d998a448b0efa90e4c5f7379feaf8236f | diff --git a/modules/citrus-core/src/main/java/com/consol/citrus/validation/builder/AbstractMessageContentBuilder.java b/modules/citrus-core/src/main/java/com/consol/citrus/validation/builder/AbstractMessageContentBuilder.java
index <HASH>..<HASH> 100644
--- a/modules/citrus-core/src/main/java/com/consol/citrus/validat... | (#<I>) added back original method signature to prevent a breaking change | citrusframework_citrus | train |
47731a11662b471a8eeae358b4bf3d6d0d8ea868 | diff --git a/test/runner/runner.go b/test/runner/runner.go
index <HASH>..<HASH> 100644
--- a/test/runner/runner.go
+++ b/test/runner/runner.go
@@ -79,6 +79,9 @@ type Build struct {
}
func (b *Build) URL() string {
+ if listenPort != "" && listenPort != "443" {
+ return "https://ci.flynn.io:" + listenPort + "/build... | test: include custom port on CI links | flynn_flynn | train |
6b7f1717e94238206fe9a7557baed3590df572ed | diff --git a/admin/webservice/service_users.php b/admin/webservice/service_users.php
index <HASH>..<HASH> 100644
--- a/admin/webservice/service_users.php
+++ b/admin/webservice/service_users.php
@@ -98,7 +98,7 @@ $usersmissingcaps = $webservicemanager->get_missing_capabilities_by_users($allow
//add the missing capabil... | MDL-<I> Fix capabilities displayed without spaces causing text going out of the screen | moodle_moodle | train |
92a55eb686a116cdf423afc87f60bd3108b08b6b | diff --git a/java-translate/samples/snippets/src/test/java/com/example/translate/QuickstartSampleIT.java b/java-translate/samples/snippets/src/test/java/com/example/translate/QuickstartSampleIT.java
index <HASH>..<HASH> 100644
--- a/java-translate/samples/snippets/src/test/java/com/example/translate/QuickstartSampleIT.... | samples: Add NL quickstart sample. Fix some other quickstarts. (#<I>) | googleapis_google-cloud-java | train |
f08266080129568a2d1324d39ebe451ec2359483 | diff --git a/test/cmd/lfstest-gitserver.go b/test/cmd/lfstest-gitserver.go
index <HASH>..<HASH> 100644
--- a/test/cmd/lfstest-gitserver.go
+++ b/test/cmd/lfstest-gitserver.go
@@ -450,7 +450,7 @@ func storageHandler(w http.ResponseWriter, r *http.Request) {
if match != nil && len(match) > 1 {
statusCode = 2... | Fix Content-Range parsing, slightly different format to Range | git-lfs_git-lfs | train |
1273ffa1861d15eb7518b7bfab6003bb3d9ca347 | diff --git a/actionpack/lib/action_controller/abstract/layouts.rb b/actionpack/lib/action_controller/abstract/layouts.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_controller/abstract/layouts.rb
+++ b/actionpack/lib/action_controller/abstract/layouts.rb
@@ -6,6 +6,7 @@ module AbstractController
incl... | Fix AbstractController::Layouts to work when included directly on a controller | rails_rails | train |
e58400683c9542af5031e49675fd5ac08031ddad | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from os import path
from distutils.version import LooseVersion
from setuptools import find_packages, setup
-VERSION = '1.20.1'
+VERSION = '1.20.2'
# Import README.md into long_description
pwd = path.abspat... | Bump package version to <I> | instana_python-sensor | train |
bb87c1436aa49724f8c9465c8756186067129b63 | diff --git a/UI/src/com/kotcrab/vis/ui/util/OsUtils.java b/UI/src/com/kotcrab/vis/ui/util/OsUtils.java
index <HASH>..<HASH> 100644
--- a/UI/src/com/kotcrab/vis/ui/util/OsUtils.java
+++ b/UI/src/com/kotcrab/vis/ui/util/OsUtils.java
@@ -72,24 +72,33 @@ public class OsUtils {
* Creates platform dependant shortcut text.... | Add SYM to control mapping, ignore min_value keycodes | kotcrab_vis-ui | train |
70460a1cc6e433fe883bb0f74df67a3394b321d3 | diff --git a/api/app/util.go b/api/app/util.go
index <HASH>..<HASH> 100644
--- a/api/app/util.go
+++ b/api/app/util.go
@@ -2,6 +2,7 @@ package app
import (
"bytes"
+ "fmt"
"regexp"
)
@@ -39,3 +40,22 @@ func filterOutput(output []byte, filterFunc func([]byte) bool) []byte {
}
return bytes.Join(result, []by... | added method to generate an uuid | tsuru_tsuru | train |
4f4a2f0469baa3cde12287d35a6a84f5145030d2 | diff --git a/lib/eye/application.rb b/lib/eye/application.rb
index <HASH>..<HASH> 100644
--- a/lib/eye/application.rb
+++ b/lib/eye/application.rb
@@ -32,4 +32,8 @@ class Eye::Application
end
end
+ def alive?
+ true # emulate celluloid actor method
+ end
+
end
\ No newline at end of file
diff --git a/li... | # fix remove subojects, which was already died | kostya_eye | train |
0b132bcb42f2e5ca5da1769e51a7eba01820c83d | diff --git a/tests/test_examples.py b/tests/test_examples.py
index <HASH>..<HASH> 100755
--- a/tests/test_examples.py
+++ b/tests/test_examples.py
@@ -38,7 +38,8 @@ class TestExamples(unittest.TestCase):
self.assertTrue(os.path.isfile('cookiecutter-pypackage/alotofeffort/README.rst'))
def tearDown(self)... | Safer rmtree - check with isdir first. | audreyr_cookiecutter | train |
9613703b8f4d0b96d87f9af0c213b805a0c4cace | diff --git a/lxd/daemon.go b/lxd/daemon.go
index <HASH>..<HASH> 100644
--- a/lxd/daemon.go
+++ b/lxd/daemon.go
@@ -14,9 +14,9 @@ import (
"strconv"
"strings"
- "github.com/coreos/go-systemd/activation"
"github.com/gorilla/mux"
_ "github.com/mattn/go-sqlite3"
+ "github.com/stgraber/lxd-go-systemd/activation"
... | Update to use Go <I>-compatible fork of go-systemd
The unsetEnv feature of the activation code in go-systemd requires
os.Unsetenv which doesn't exist until Go <I>.
As we're currently relying on Go <I>, I made a fork of go-systemd in
stgraber/lxd-go-systemd which has that codepath commented out (we don't
use it) and c... | lxc_lxd | train |
ab5d407a03192bd8ab63a1bfc891db9c04330265 | diff --git a/tests/test_asyncio/test_timeseries.py b/tests/test_asyncio/test_timeseries.py
index <HASH>..<HASH> 100644
--- a/tests/test_asyncio/test_timeseries.py
+++ b/tests/test_asyncio/test_timeseries.py
@@ -240,6 +240,9 @@ async def test_range_advanced(modclient: redis.Redis):
assert [(0, 5.0), (5, 6.0)] == aw... | fix test (#<I>) | andymccurdy_redis-py | train |
6dbcfa78d84fb51f46ebe0d50bf4d18beebb9931 | diff --git a/build_tools/build_binaries_windows.py b/build_tools/build_binaries_windows.py
index <HASH>..<HASH> 100644
--- a/build_tools/build_binaries_windows.py
+++ b/build_tools/build_binaries_windows.py
@@ -116,17 +116,17 @@ miniconda32_envs = os.getenv('MINICONDA32_ENVS', r'C:\tools\Miniconda32\envs')
miniconda64... | Use proper path for conda envs. | fabioz_PyDev.Debugger | train |
87e5fe39bd7f9ec7145bd1376668b396aa708189 | diff --git a/build/jspicl.js b/build/jspicl.js
index <HASH>..<HASH> 100644
--- a/build/jspicl.js
+++ b/build/jspicl.js
@@ -283,9 +283,12 @@ const generalPolyfills = {
const arrayPolyfills = {
forEach: (context, args) => `foreach(${context}, ${args})`,
push: (context, args) => `add(${context}, ${args})`,
- join:... | Add polyfill for Array.includes
* Add polyfill for Array.includes
Fixes #<I> | AgronKabashi_jspicl | train |
a5585434208ee9effec0579f4f42d8949a34765b | diff --git a/rootpy/stats/histfactory/histfactory.py b/rootpy/stats/histfactory/histfactory.py
index <HASH>..<HASH> 100644
--- a/rootpy/stats/histfactory/histfactory.py
+++ b/rootpy/stats/histfactory/histfactory.py
@@ -222,6 +222,26 @@ class Sample(_SampleBase, QROOT.RooStats.HistFactory.Sample):
hsys = se... | histfactory: add sys_names for Channel and add sys_hist for Sample | rootpy_rootpy | train |
07b61c575f047c4bcb19fd5bb6ae1a5bacf7a67f | diff --git a/pythonforandroid/toolchain.py b/pythonforandroid/toolchain.py
index <HASH>..<HASH> 100755
--- a/pythonforandroid/toolchain.py
+++ b/pythonforandroid/toolchain.py
@@ -1564,15 +1564,30 @@ class Recipe(object):
# print("Unrecognized extension for {}".format(filename))
# raise Excepti... | toolchain: improved functions to apply recipe patches | kivy_python-for-android | train |
0f04a8a95bd13f84e198cf62f58476ead7187ffa | diff --git a/marshmallow_sqlalchemy/convert.py b/marshmallow_sqlalchemy/convert.py
index <HASH>..<HASH> 100644
--- a/marshmallow_sqlalchemy/convert.py
+++ b/marshmallow_sqlalchemy/convert.py
@@ -4,7 +4,7 @@ import functools
import marshmallow as ma
from marshmallow import validate, fields
-from sqlalchemy.dialects ... | Include mssql dilect BIT field support. | marshmallow-code_marshmallow-sqlalchemy | train |
460782e64d8744b23b3c39347c8be0d1cff889fe | diff --git a/src/Model/Behavior/EncryptedFieldsBehavior.php b/src/Model/Behavior/EncryptedFieldsBehavior.php
index <HASH>..<HASH> 100644
--- a/src/Model/Behavior/EncryptedFieldsBehavior.php
+++ b/src/Model/Behavior/EncryptedFieldsBehavior.php
@@ -243,20 +243,22 @@ class EncryptedFieldsBehavior extends Behavior
... | Decrease if nesting and add extra test (task #<I>) | QoboLtd_cakephp-utils | train |
ed7bd3a2bd8948f8a3745582233f50d14ba86720 | diff --git a/tornado/testing.py b/tornado/testing.py
index <HASH>..<HASH> 100644
--- a/tornado/testing.py
+++ b/tornado/testing.py
@@ -114,8 +114,8 @@ class _TestMethodWrapper(object):
def __init__(self, orig_method):
self.orig_method = orig_method
- def __call__(self):
- result = self.orig_me... | Fixed support for test generators
This fixes the problem that AsyncTestCase no longer seemed to work with test generators (as supported by Nose, <URL>). | tornadoweb_tornado | train |
361aa401f23f31256388c94a506162a6fb52b3fb | diff --git a/structurizr-spring/src/com/structurizr/componentfinder/SpringComponentFinderStrategy.java b/structurizr-spring/src/com/structurizr/componentfinder/SpringComponentFinderStrategy.java
index <HASH>..<HASH> 100644
--- a/structurizr-spring/src/com/structurizr/componentfinder/SpringComponentFinderStrategy.java
+... | "Spring MVC controller" seems a bit more accurate. | structurizr_java | train |
2cbf9377d1d0c5b92d09a22cc1bd314fe6dbdca7 | diff --git a/src/correosESTracker.js b/src/correosESTracker.js
index <HASH>..<HASH> 100644
--- a/src/correosESTracker.js
+++ b/src/correosESTracker.js
@@ -72,10 +72,10 @@ function createCorreosEsEntity(id, html) {
if(_class === 'txtDescripcionTabla'){
state['date'] = momen... | updated correosES to match the new convention { id, state, states: [ { date, state, title, area } ] } | hdnpt_geartrack | train |
f92f4b006e7e832269c4c6d402e2c676d54bcf04 | diff --git a/BimServer/src/org/bimserver/database/actions/StreamingCheckinDatabaseAction.java b/BimServer/src/org/bimserver/database/actions/StreamingCheckinDatabaseAction.java
index <HASH>..<HASH> 100644
--- a/BimServer/src/org/bimserver/database/actions/StreamingCheckinDatabaseAction.java
+++ b/BimServer/src/org/bims... | Moved code that finishes reading the InputStream on error to a safer
place (TriggerOnCloseInputStream) | opensourceBIM_BIMserver | train |
e1baf12641455bad4b2651c06c39f0d8d4631c68 | diff --git a/bcbio/pipeline/shared.py b/bcbio/pipeline/shared.py
index <HASH>..<HASH> 100644
--- a/bcbio/pipeline/shared.py
+++ b/bcbio/pipeline/shared.py
@@ -210,9 +210,11 @@ def remove_highdepth_regions(in_file, items):
all_file = "%s-all.bed" % utils.splitext_plus(tx_out_file)[0]
if... | highdepth: handle bgzipped input files
Some installed highdepth BED files are now bgzipped, so be sure
we handle these correctly and avoid writing binary output. #<I> | bcbio_bcbio-nextgen | train |
c5874ddf0195f8eb49c42b320bfe685dab5c2a7c | diff --git a/python/mxnet/autograd.py b/python/mxnet/autograd.py
index <HASH>..<HASH> 100644
--- a/python/mxnet/autograd.py
+++ b/python/mxnet/autograd.py
@@ -493,6 +493,7 @@ class Function(object):
POINTER(CFUNCTYPE(c_int))),
cast(c_array(c_void_... | [BUGFIX] Fix a bug in Auto Function. (#<I>)
* add test.
* fix.
* update test. | apache_incubator-mxnet | train |
33702f7c5db567f43af64c0c5038905a70287e66 | diff --git a/src/Generator/Analyzer/Steps/AnalyzeModels.php b/src/Generator/Analyzer/Steps/AnalyzeModels.php
index <HASH>..<HASH> 100644
--- a/src/Generator/Analyzer/Steps/AnalyzeModels.php
+++ b/src/Generator/Analyzer/Steps/AnalyzeModels.php
@@ -72,16 +72,19 @@ class AnalyzeModels extends AbstractProcessStep
... | analyzer + config prepared for modules with (real) categories | czim_laravel-pxlcms | train |
b5f1631bcb0fe543ca0c921fb05fe35992421627 | diff --git a/src/Common/Console/Command/Database/Migrate.php b/src/Common/Console/Command/Database/Migrate.php
index <HASH>..<HASH> 100644
--- a/src/Common/Console/Command/Database/Migrate.php
+++ b/src/Common/Console/Command/Database/Migrate.php
@@ -336,12 +336,14 @@ class Migrate extends Base
$aOut = array_v... | Further fix for DB migrations when there are _no_migrations | nails_common | train |
a9962c73481fc192b5c9eda29126fade7557755f | diff --git a/tests/specs/events.js b/tests/specs/events.js
index <HASH>..<HASH> 100644
--- a/tests/specs/events.js
+++ b/tests/specs/events.js
@@ -34,6 +34,42 @@ var assert = chai.assert,
dp.selectDate(date);
+ });
+
+ it('should receive array of dates when "multipleDates" set to true', f... | add tests for "onSelect" event | t1m0n_air-datepicker | train |
280b47d737ce60337293a8f38e33111e0a71e512 | diff --git a/bundles/org.eclipse.orion.client.editor/web/orion/editor/editor.js b/bundles/org.eclipse.orion.client.editor/web/orion/editor/editor.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.editor/web/orion/editor/editor.js
+++ b/bundles/org.eclipse.orion.client.editor/web/orion/editor/editor.... | Add API to return undo stack from editor | eclipse_orion.client | train |
81249eb110d3acaad149b3dfac78b2a3752329af | diff --git a/ddlgenerator/console.py b/ddlgenerator/console.py
index <HASH>..<HASH> 100644
--- a/ddlgenerator/console.py
+++ b/ddlgenerator/console.py
@@ -48,7 +48,7 @@ def set_logging(args):
is_sqlalchemy_url = re.compile("^%s" % "|".join(dialect_names))
-def generate_one(tbl, args, table_name=None):
+def generat... | capture output in file when calling programmatically | catherinedevlin_ddl-generator | train |
df7c60f1e506f3dae012643202c74ecd191ef45f | diff --git a/limpyd/contrib/related.py b/limpyd/contrib/related.py
index <HASH>..<HASH> 100644
--- a/limpyd/contrib/related.py
+++ b/limpyd/contrib/related.py
@@ -69,24 +69,25 @@ class RelatedCollection(object):
a simple one, or remove the instance from the field if it's a set/list/
sorted_set)
... | Use lock when rm instance from RelatedCollection
We use a FieldLock when removing an instance from a lot a others objets so this
process is now protected | limpyd_redis-limpyd | train |
7441ec74f3d251bd3d2119169f75f7bb8a384a53 | diff --git a/src/js.cookie.js b/src/js.cookie.js
index <HASH>..<HASH> 100644
--- a/src/js.cookie.js
+++ b/src/js.cookie.js
@@ -66,12 +66,10 @@
}
} catch (e) {}
- if (!converter.write) {
- value = encodeURIComponent(String(value))
+ value = converter.write ?
+ converter.write(value, key) :
+ ... | Make use of ternary operator instead of if/else
This way value + key appear together, visually. | js-cookie_js-cookie | train |
2187e986dea4bea403f9efedb36555ea9ed28cc3 | diff --git a/src/select.js b/src/select.js
index <HASH>..<HASH> 100644
--- a/src/select.js
+++ b/src/select.js
@@ -410,7 +410,8 @@
item = ctrl.tagging.fct(ctrl.search);
// if item type is 'string', apply the tagging label
} else if ( typeof item === 'string' ) {
- ... | Trim the trailing space left by a new tag's label. | angular-ui_ui-select | train |
4c435f09006c3c9ab9b951ecebbd1ac0374d4dc5 | diff --git a/agent/agent.go b/agent/agent.go
index <HASH>..<HASH> 100644
--- a/agent/agent.go
+++ b/agent/agent.go
@@ -159,6 +159,7 @@ func (a *Agent) run(ctx context.Context) {
a.err = err
return // fatal?
}
+ defer a.worker.Close()
// setup a reliable reporter to call back to us.
reporter := newStatusRe... | agent: Release worker resources on shutdown. | docker_swarmkit | train |
9284c595a727ca70b845ad7ec4792cc549db7fa7 | diff --git a/shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/metadata/database/ShardingSphereDatabasesFactory.java b/shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/metadata/database/ShardingSphereDatabasesFactory.java
index <... | Fix show tables wrong result when execute drop sharding table rule (#<I>) | apache_incubator-shardingsphere | train |
fdfc65689a63f659b2fc828b89efd8ea717a4ff0 | diff --git a/cli/lib/kontena/errors.rb b/cli/lib/kontena/errors.rb
index <HASH>..<HASH> 100644
--- a/cli/lib/kontena/errors.rb
+++ b/cli/lib/kontena/errors.rb
@@ -24,6 +24,7 @@ module Kontena
# Render as indented YAML
def errors_message(indent: "\t")
+ require 'yaml'
@errors.to_yaml.line... | Add yaml loading to error handling (#<I>) | kontena_kontena | train |
68573629b7463f7884668ec08395afc8aa4ff564 | diff --git a/pycbc/fft/mkl.py b/pycbc/fft/mkl.py
index <HASH>..<HASH> 100644
--- a/pycbc/fft/mkl.py
+++ b/pycbc/fft/mkl.py
@@ -1,6 +1,18 @@
-import ctypes
+import ctypes, functools
from pycbc.types import zeros
+def memoize(obj):
+ cache = obj.cache = {}
+
+ @functools.wraps(obj)
+ def memoizer(*args, **kwa... | mkl prototype can now be run (not tested for correctness) | gwastro_pycbc | train |
57b9c75df61d1ec6edb5430e75a7e3a80cae76b5 | diff --git a/test/test_failover_integration.py b/test/test_failover_integration.py
index <HASH>..<HASH> 100644
--- a/test/test_failover_integration.py
+++ b/test/test_failover_integration.py
@@ -23,10 +23,10 @@ class TestFailover(KafkaIntegrationTestCase):
return
zk_chroot = random_string(10)
- ... | Test failover integration with 3-brokers / replicas / partitions | dpkp_kafka-python | train |
6b7664f642da9537a793775ee7b99e9a55355ee3 | diff --git a/tools/interop_matrix/client_matrix.py b/tools/interop_matrix/client_matrix.py
index <HASH>..<HASH> 100644
--- a/tools/interop_matrix/client_matrix.py
+++ b/tools/interop_matrix/client_matrix.py
@@ -142,8 +142,8 @@ LANG_RELEASE_MATRIX = {
('v1.19.0',
ReleaseInfo(runtimes=['go1.11'... | Add <I> and <I> of grpc-go to interop matrix | grpc_grpc | train |
6691f9ec09fde8420347b7b7bca4f3cf23e56431 | diff --git a/src/Http/Controllers/BaseController.php b/src/Http/Controllers/BaseController.php
index <HASH>..<HASH> 100644
--- a/src/Http/Controllers/BaseController.php
+++ b/src/Http/Controllers/BaseController.php
@@ -56,6 +56,22 @@ class BaseController extends Controller
return false;
}
+ public fu... | Add forum-moderate permission and canModerate controller method. | taskforcedev_laravel-forum | train |
cd1204f6a263523046636dfc4ff2b28bca65b971 | diff --git a/src/php/wp-cli/class-wp-cli.php b/src/php/wp-cli/class-wp-cli.php
index <HASH>..<HASH> 100644
--- a/src/php/wp-cli/class-wp-cli.php
+++ b/src/php/wp-cli/class-wp-cli.php
@@ -25,7 +25,7 @@ class WP_CLI {
* @param string $message
*/
static function out( $message ) {
- if ( defined( 'WP_CLI_SILENT... | WP_CLI_SILENT is always defined | wp-cli_extension-command | train |
30765937f4f3ef956cfffe148cdc43b664857a4c | diff --git a/src/java/com/github/rainmanwy/robotframework/sikulilib/keywords/ScreenKeywords.java b/src/java/com/github/rainmanwy/robotframework/sikulilib/keywords/ScreenKeywords.java
index <HASH>..<HASH> 100644
--- a/src/java/com/github/rainmanwy/robotframework/sikulilib/keywords/ScreenKeywords.java
+++ b/src/java/com/... | add paste operation, it could fix unicode problem for input text, for example chinese language input | rainmanwy_robotframework-SikuliLibrary | train |
fb7f3231cbbdf15acca721b2af283b3e2b76691b | diff --git a/tap/adapter.py b/tap/adapter.py
index <HASH>..<HASH> 100644
--- a/tap/adapter.py
+++ b/tap/adapter.py
@@ -32,12 +32,20 @@ class Adapter(object):
# TODO: Pass in a fake test case that has all the internal APIs.
"""Handle a test result line."""
if line.skip:
- result.add... | Handle Python <I> lack of support for unittest features. | python-tap_tappy | train |
01b82ce0dd6e95c05069f1616d74a74428cae2a8 | diff --git a/test/integration_test_helper.rb b/test/integration_test_helper.rb
index <HASH>..<HASH> 100644
--- a/test/integration_test_helper.rb
+++ b/test/integration_test_helper.rb
@@ -6,5 +6,6 @@ class ActionController::IntegrationTest
include Capybara::DSL
Capybara.default_driver = :selenium
+ Capybara.d... | increase default wait time for failing tests. | ample_ample_assets | train |
ade13e8003574451c1c511760bee760e50788d05 | diff --git a/index.ios.js b/index.ios.js
index <HASH>..<HASH> 100644
--- a/index.ios.js
+++ b/index.ios.js
@@ -24,7 +24,8 @@ class CalendarSwiper extends React.Component {
super(props);
this.state = {
calendarDates: [moment().format()],
- selectedDate: null
+ selectedDate: null,
+ curren... | set current month as state parameter which will get updated after each action | christopherdro_react-native-calendar | train |
066ef5556cadd228c9d6126e4042178ec7546953 | diff --git a/aeron-driver/src/main/java/io/aeron/driver/media/UdpChannel.java b/aeron-driver/src/main/java/io/aeron/driver/media/UdpChannel.java
index <HASH>..<HASH> 100644
--- a/aeron-driver/src/main/java/io/aeron/driver/media/UdpChannel.java
+++ b/aeron-driver/src/main/java/io/aeron/driver/media/UdpChannel.java
@@ -4... | [Java] Set ANY address for endpoint based on protocol family used for control address. Issue #<I>. | real-logic_aeron | train |
26d5d404a093152dec1f1225226206533375f7d0 | diff --git a/Helper/Config.php b/Helper/Config.php
index <HASH>..<HASH> 100755
--- a/Helper/Config.php
+++ b/Helper/Config.php
@@ -209,7 +209,7 @@ class Config extends \Magento\Framework\App\Helper\AbstractHelper
* ROI SECTION.
*/
const XML_PATH_CONNECTOR_ROI_TRACKING_ENABLED = 'connector_con... | page tracking config path is wrong #<I> | dotmailer_dotmailer-magento2-extension | train |
ceffc5b5590e5cc518e09f898ac3500d2c49cbb3 | diff --git a/lib/active_mocker/ruby_parse.rb b/lib/active_mocker/ruby_parse.rb
index <HASH>..<HASH> 100644
--- a/lib/active_mocker/ruby_parse.rb
+++ b/lib/active_mocker/ruby_parse.rb
@@ -13,11 +13,11 @@ module ActiveMocker
end
def class_name
- Unparser.unparse(ast.to_a[0])
+ Unparser.unparse(find_... | Add case where parsing class file when the class is not the first thing in the file. | zeisler_active_mocker | train |
88fe37646186b4b7e9b6546ef3f667165a8991aa | diff --git a/parseNitroApi.js b/parseNitroApi.js
index <HASH>..<HASH> 100644
--- a/parseNitroApi.js
+++ b/parseNitroApi.js
@@ -468,6 +468,39 @@ function processFeed(feed) {
path.get.description = feed.title;
path.get.tags = ['feeds'];
path.get.summary = feed.title;
+
+ // a long time ago, in a galaxy far, far aw... | Add some more hard-coded path descriptions | MikeRalphson_bbcparse | train |
08b92545a8ed61861b53d59c6e5cb1755048232a | diff --git a/modules/layers/src/solid-polygon-layer/solid-polygon-layer.js b/modules/layers/src/solid-polygon-layer/solid-polygon-layer.js
index <HASH>..<HASH> 100644
--- a/modules/layers/src/solid-polygon-layer/solid-polygon-layer.js
+++ b/modules/layers/src/solid-polygon-layer/solid-polygon-layer.js
@@ -204,7 +204,7 ... | Fix solid-polygon-layer to work with new coordinate mode (#<I>) | uber_deck.gl | train |
6a038c4729f0aa89f591c2c4a2545a319d5d3238 | diff --git a/src/mako/http/Request.php b/src/mako/http/Request.php
index <HASH>..<HASH> 100644
--- a/src/mako/http/Request.php
+++ b/src/mako/http/Request.php
@@ -111,6 +111,13 @@ class Request
protected $path;
/**
+ * Was this a "clean" request?
+ *
+ * @var string
+ */
+ protected $isClean = true;
+
+ /**
... | Trailing slash redirects now also work with "dirty" URLs | mako-framework_framework | train |
a9d685675d1191032b19ec7aa86176812eacc3b9 | diff --git a/app/scripts/directives/info-window.js b/app/scripts/directives/info-window.js
index <HASH>..<HASH> 100644
--- a/app/scripts/directives/info-window.js
+++ b/app/scripts/directives/info-window.js
@@ -93,16 +93,15 @@
return template;
};
- infoWindow.__open = function(scope, anchor) {... | issue #<I>, issue #<I>, fixed infowindow not setting map correctly. infoWindow.close() is setting infoWindow.map to null, so the next open is not possible because it tries to open on infoWindow.map | allenhwkim_angularjs-google-maps | train |
48fad2a214086d7dbe5b98ab4a8cd2e6f3cda1be | diff --git a/source/rafcon/gui/helpers/state.py b/source/rafcon/gui/helpers/state.py
index <HASH>..<HASH> 100644
--- a/source/rafcon/gui/helpers/state.py
+++ b/source/rafcon/gui/helpers/state.py
@@ -20,7 +20,7 @@ from rafcon.core.constants import UNIQUE_DECIDER_STATE_ID
from rafcon.gui import singleton as gui_singleto... | clean signal imports and add docstrings in state machine manager model | DLR-RM_RAFCON | train |
9e532f2f9dbc21873a2d182c34908844f2e3913f | diff --git a/decoda/filters/EmailFilter.php b/decoda/filters/EmailFilter.php
index <HASH>..<HASH> 100644
--- a/decoda/filters/EmailFilter.php
+++ b/decoda/filters/EmailFilter.php
@@ -18,6 +18,16 @@ class EmailFilter extends DecodaFilter {
const EMAIL_PATTERN = '/(^|\n|\s)([-a-z0-9\.\+!]{1,64}+)@([-a-z0-9]+\.[a-z\.]+)... | Adding an encrypt config to the EmailFilter. | milesj_decoda | train |
21a3a4481874e3f6941ff8ec391d05900d54f7b3 | diff --git a/lib/dataElementListener.js b/lib/dataElementListener.js
index <HASH>..<HASH> 100644
--- a/lib/dataElementListener.js
+++ b/lib/dataElementListener.js
@@ -28,17 +28,15 @@ class DataElementImporter extends SHRDataElementParserListener {
this._currentGrammarVersion = '';
// The relative path to the ... | Trim file path, refactor data element additions | standardhealth_shr-text-import | train |
7ef7c18c15696271721450d5922dbe84598a283e | diff --git a/sperment/observers.py b/sperment/observers.py
index <HASH>..<HASH> 100644
--- a/sperment/observers.py
+++ b/sperment/observers.py
@@ -105,4 +105,12 @@ class MongoDBReporter(ExperimentObserver):
self.experiment_entry['stop_time'] = fail_time
self.experiment_entry['info'] = info
se... | made MongoDBObservers comparable for equality | IDSIA_sacred | train |
7d91d054e95cce57dcb5222945e4b683aac0fc15 | diff --git a/request-callback/src/main/java/org/talend/esb/mep/requestcallback/impl/RequestCallbackInInterceptor.java b/request-callback/src/main/java/org/talend/esb/mep/requestcallback/impl/RequestCallbackInInterceptor.java
index <HASH>..<HASH> 100644
--- a/request-callback/src/main/java/org/talend/esb/mep/requestcall... | Reverted changes from previous commit to fix the build | Talend_tesb-rt-se | train |
c614a20e02cb8fd5531bce1adcb34a1210f79ac6 | diff --git a/lib/Doctrine/Common/ClassLoader.php b/lib/Doctrine/Common/ClassLoader.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/Common/ClassLoader.php
+++ b/lib/Doctrine/Common/ClassLoader.php
@@ -33,10 +33,25 @@ namespace Doctrine\Common;
*/
class ClassLoader
{
- private $fileExtension = '.php';
- priv... | [DCOM-<I>] Increased visibility of members in ClassLoader in order to simplify extensibility through methods' override. | doctrine_common | train |
f540b0f4d8811c1c37b709b01c2216bb1184792e | diff --git a/lib/deploy.rb b/lib/deploy.rb
index <HASH>..<HASH> 100644
--- a/lib/deploy.rb
+++ b/lib/deploy.rb
@@ -122,10 +122,7 @@ module Deploy
end
def configuration
- return @configuration if @configuration
- @configuration = if fetch_eb
- S3::Configuration.new(settings['elasticbeanstalk... | Don't use the EB bucket as it is hacky and slow | sealink_deploy_aws | train |
af1fdfa680d953e7fe8b4ecd60e265d3f17632e2 | diff --git a/src/Model/Form.php b/src/Model/Form.php
index <HASH>..<HASH> 100644
--- a/src/Model/Form.php
+++ b/src/Model/Form.php
@@ -156,4 +156,110 @@ class Form extends Base
return false;
}
}
+
+ // --------------------------------------------------------------------------
+
+ /**
+ ... | Added `copy()` method | nails_module-form-builder | train |
91f8347500bf203d4cf06606d20dc9d141abf433 | diff --git a/internal/uidriver/glfw/ui.go b/internal/uidriver/glfw/ui.go
index <HASH>..<HASH> 100644
--- a/internal/uidriver/glfw/ui.go
+++ b/internal/uidriver/glfw/ui.go
@@ -1229,6 +1229,7 @@ func (u *UserInterface) setWindowSize(width, height int, fullscreen bool) {
case <-t.C:
break event
default:
+ ... | internal/uidriver/glfw: Avoid busy loop by sleeping
Updates #<I> | hajimehoshi_ebiten | train |
9a4418da19feaa00bdfb1e8375d64c2170dadf14 | diff --git a/publify_textfilter_code/spec/lib/publify_app/textfilter_code_spec.rb b/publify_textfilter_code/spec/lib/publify_app/textfilter_code_spec.rb
index <HASH>..<HASH> 100644
--- a/publify_textfilter_code/spec/lib/publify_app/textfilter_code_spec.rb
+++ b/publify_textfilter_code/spec/lib/publify_app/textfilter_co... | Remove specs that test behavior with textile filter | publify_publify | train |
33d649075a041bedbce65eec919c0014eec4e5ad | diff --git a/lib/providers/json-file.provider.js b/lib/providers/json-file.provider.js
index <HASH>..<HASH> 100644
--- a/lib/providers/json-file.provider.js
+++ b/lib/providers/json-file.provider.js
@@ -13,6 +13,7 @@ class JSONfileProvider extends Provider {
}
readFile(filePath) {
+ if(!filePath) { r... | json file provider should not import files if file path is empty | kmoskwiak_muchconf | train |
17c5a79c5c2391917553177da3d2839e7a8e5f26 | diff --git a/languagetool-language-modules/de/src/main/java/org/languagetool/language/German.java b/languagetool-language-modules/de/src/main/java/org/languagetool/language/German.java
index <HASH>..<HASH> 100644
--- a/languagetool-language-modules/de/src/main/java/org/languagetool/language/German.java
+++ b/languageto... | [en] [de] deprecate the constructors that create a language object without spell checking rules - this regularly confused users | languagetool-org_languagetool | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.