hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
1b6ee86a486b6321af0c32a5737f9733cc0f711b | diff --git a/staticconf/config.py b/staticconf/config.py
index <HASH>..<HASH> 100644
--- a/staticconf/config.py
+++ b/staticconf/config.py
@@ -2,7 +2,6 @@
Classes for storing configuration by namespace, and reloading configuration
while files change.
"""
-import functools
import logging
import os
import time
@@ -... | Resolves #<I>, have ConfigFacade clear the config namespace before reloading. | dnephin_PyStaticConfiguration | train |
af3d640b3db069143619151bafdddd4e0d468371 | diff --git a/test/cli-engine.test.js b/test/cli-engine.test.js
index <HASH>..<HASH> 100644
--- a/test/cli-engine.test.js
+++ b/test/cli-engine.test.js
@@ -14,6 +14,6 @@ describe("CLIEngine", () => {
`${process.cwd()}/test/cases/main.css`,
`${process.cwd()}/test/cases/main.css`
]);
- }, Error... | Change: clearer expected for test result | kubosho_kotori | train |
971a7194d8292fab345b9438bfda8030749f38d3 | diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/EnableAutoConfigurationImportSelector.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/EnableAutoConfigurationImportSelector.java
index <HASH>..<HASH> 100644
--- a/spring-boot-autoconfigure/s... | Add check for non empty list of factories
It was seeen that if a different plugin was used to package Spring Boot
that the project would load but no autoconfiguration actually took
place and many features were mysteriously not working. Adding a check
to ensure that some factories are always loaded as this is expected... | spring-projects_spring-boot | train |
0001d2a3e00abeff9aeffcd7b807e5c062700d8e | diff --git a/plan/logical_plan_test.go b/plan/logical_plan_test.go
index <HASH>..<HASH> 100644
--- a/plan/logical_plan_test.go
+++ b/plan/logical_plan_test.go
@@ -426,6 +426,11 @@ func (s *testPlanSuite) TestPredicatePushDown(c *C) {
sql: "select t1.a, t2.a from t as t1 left join t as t2 on t1.a = t2.a where t1.a ... | plan: return table dual when filter is false/null (#<I>) | pingcap_tidb | train |
08887369c890e0dd87eb8b34e8c32bb03307bf24 | diff --git a/python/pyspark/sql/dataframe.py b/python/pyspark/sql/dataframe.py
index <HASH>..<HASH> 100644
--- a/python/pyspark/sql/dataframe.py
+++ b/python/pyspark/sql/dataframe.py
@@ -1202,7 +1202,9 @@ class DataFrame(object):
@ignore_unicode_prefix
@since(1.3)
def withColumn(self, colName, col):
- ... | [SPARK-<I>] [SQL] Python withColumn should replace the old column
DataFrame.withColumn in Python should be consistent with the Scala one (replacing the existing column that has the same name).
cc marmbrus | apache_spark | train |
b21e15680fc571f7dae951d9b776572e0d19027d | diff --git a/kafka_scanner/__init__.py b/kafka_scanner/__init__.py
index <HASH>..<HASH> 100644
--- a/kafka_scanner/__init__.py
+++ b/kafka_scanner/__init__.py
@@ -650,7 +650,5 @@ class KafkaScannerDirect(KafkaScannerSimple):
return super(KafkaScannerDirect, self).are_there_batch_messages_to_process(msgslen)
... | don't reset to 0 the offsets not included in reset_offsets dict | scrapinghub_kafka-scanner | train |
7c5ba1366abc33e5e1f4a3d2cc333dc5bee314ac | diff --git a/will/backends/io_adapters/slack.py b/will/backends/io_adapters/slack.py
index <HASH>..<HASH> 100644
--- a/will/backends/io_adapters/slack.py
+++ b/will/backends/io_adapters/slack.py
@@ -6,6 +6,7 @@ import requests
import sys
import time
import traceback
+import websocket
from markdownify import Markd... | Attempt to work around WebSocketConnectionClosedException for slack
see <URL> | skoczen_will | train |
04e01441e08e7e066280e5fe160fde2bcb84d257 | diff --git a/spec/helper_spec.rb b/spec/helper_spec.rb
index <HASH>..<HASH> 100755
--- a/spec/helper_spec.rb
+++ b/spec/helper_spec.rb
@@ -615,12 +615,6 @@ describe Split::Helper do
end
end
- after(:each) do
- Split.configure do |config|
- config.enabled = true
- ... | Don't need a after block | splitrb_split | train |
7d3a46110709bfb8629aeab67bc69a119f43d019 | diff --git a/sdk/storage/azure-storage-blob/azure/storage/blob/_blob_client.py b/sdk/storage/azure-storage-blob/azure/storage/blob/_blob_client.py
index <HASH>..<HASH> 100644
--- a/sdk/storage/azure-storage-blob/azure/storage/blob/_blob_client.py
+++ b/sdk/storage/azure-storage-blob/azure/storage/blob/_blob_client.py
@... | [Storage] Fix some mypy typing errors and typing imports (#<I>) | Azure_azure-sdk-for-python | train |
a6266391b72bed68919db31ec9ca90099d33d516 | diff --git a/lib/src/server/start.js b/lib/src/server/start.js
index <HASH>..<HASH> 100644
--- a/lib/src/server/start.js
+++ b/lib/src/server/start.js
@@ -10,6 +10,11 @@ const { listener } = require('./listener')
const { startWsServer } = require('./reload')
const { update } = require('../utils')
+/*
+|------------... | Creating helper function for sending compile action to the client | wking-io_elm-live | train |
6d4db5e84b899b2539db4d27758436271d4609ed | diff --git a/lib/rails-settings-ui.rb b/lib/rails-settings-ui.rb
index <HASH>..<HASH> 100644
--- a/lib/rails-settings-ui.rb
+++ b/lib/rails-settings-ui.rb
@@ -47,7 +47,8 @@ module RailsSettingsUi
def default_settings
if Gem.loaded_specs['rails-settings-cached'].version.to_s >= '0.6.0'
- RailsSettin... | Fix dependency issue and saving bug (#<I>)
* Fix usage of Dry::Validation::Schema::Form, which is deprecated and replaced by Schema::Params
* Fix ignored settings being overwritten with default value | accessd_rails-settings-ui | train |
da8fad26a98ec375f9f1930dc36a0f3a0613b93e | diff --git a/sync_test.go b/sync_test.go
index <HASH>..<HASH> 100644
--- a/sync_test.go
+++ b/sync_test.go
@@ -1141,9 +1141,11 @@ func TestNeutrinoSync(t *testing.T) {
testHarness := &neutrinoHarness{h1, h2, h3, svc}
for _, test := range testCases {
- t.Run(test.name, func(t *testing.T) {
+ if ok := t.Run(test.... | sync_test: stop immediately on test failure | lightninglabs_neutrino | train |
2490691a99fdcb739536be66c4d4997b869bb3ee | diff --git a/flask_resty/view.py b/flask_resty/view.py
index <HASH>..<HASH> 100644
--- a/flask_resty/view.py
+++ b/flask_resty/view.py
@@ -56,14 +56,14 @@ class ApiView(MethodView):
def make_response(self, data, *args, **kwargs):
body = self.make_response_body(data, meta.get_response_meta())
- re... | chore: move jsonify call to make_response_body (#<I>)
If `make_response` does not assume the content type then we can return
things that are not `application/json` without re-implementing both
`make_response` and `make_response_body`. | 4Catalyzer_flask-resty | train |
e0439279519786a60f93c9d03d237ec9f980dec4 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -2,11 +2,8 @@
from setuptools import setup
from xero import VERSION
-try:
- readme = open("README.md")
+with open('README.md') as readme:
long_description = str(readme.read())
-finally:
- readme.close()
setup... | Less code is better (use python's "with" in setup.py) | freakboy3742_pyxero | train |
f7672c5a0ad222565e4357eebe75c0041b536ad7 | diff --git a/src/Laravel/Packer/Processors/JSMin.php b/src/Laravel/Packer/Processors/JSMin.php
index <HASH>..<HASH> 100644
--- a/src/Laravel/Packer/Processors/JSMin.php
+++ b/src/Laravel/Packer/Processors/JSMin.php
@@ -71,6 +71,7 @@ class JSMin
protected $output = '';
protected $lastByteOut = '';
p... | Added disable comments option to JavaScript processor | eusonlito_laravel-Packer | train |
b55e6dda5ae1f14379b536836eb06505476cb214 | diff --git a/recipe/pimcore.php b/recipe/pimcore.php
index <HASH>..<HASH> 100644
--- a/recipe/pimcore.php
+++ b/recipe/pimcore.php
@@ -11,12 +11,12 @@ add('writable_dirs', ['public/var']);
desc('Rebuild Pimcore Classes');
task('pimcore:rebuild-classes', function () {
- run('{{bin/php}} {{bin/console}} pimcore:de... | [Pimcore] bin/php is included in bin/console already (#<I>)
* [Pimcore] bin/php is included in bin/console already
* Update pimcore.php | deployphp_deployer | train |
efc3e2ffbffbc929f993db0398d2df8ed8d44d4a | diff --git a/src/main/java/com/zaxxer/nuprocess/NuProcess.java b/src/main/java/com/zaxxer/nuprocess/NuProcess.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/zaxxer/nuprocess/NuProcess.java
+++ b/src/main/java/com/zaxxer/nuprocess/NuProcess.java
@@ -93,11 +93,35 @@ public interface NuProcess
boolean hasPen... | Add destroyForcibly() method, which guarantees the process will
terminate | brettwooldridge_NuProcess | train |
3ddbf48d8cae738c87a77b9529f408b9c315078e | diff --git a/config.go b/config.go
index <HASH>..<HASH> 100644
--- a/config.go
+++ b/config.go
@@ -1,11 +1,8 @@
package jade
-import "io/ioutil"
-
//go:generate stringer -type=itemType,NodeType -trimprefix=item -output=config_string.go
var TabSize = 4
-var ReadFunc = ioutil.ReadFile
var (
golang_mode = fal... | Add support http.FileSystem and two dots in include path | Joker_jade | train |
6cac253639d42d6623d8ddc689aa59056adc5b36 | diff --git a/bundle/Command/ConvertXmlTextToRichTextCommand.php b/bundle/Command/ConvertXmlTextToRichTextCommand.php
index <HASH>..<HASH> 100644
--- a/bundle/Command/ConvertXmlTextToRichTextCommand.php
+++ b/bundle/Command/ConvertXmlTextToRichTextCommand.php
@@ -149,6 +149,7 @@ EOT
} else {
$dryRu... | Fix regressions caused by multiconcurrency pr #<I> (#<I>)
* Fixed regression : --fix-embedded-images-only option not working after PR#<I>
* Bugfix : conversion script may skip updated last set of fields | ezsystems_ezplatform-xmltext-fieldtype | train |
b79829b12f530204b1190e4b2f20570dd4089282 | diff --git a/app/templates/src/main/java/package/config/_WebsocketSecurityConfiguration.java b/app/templates/src/main/java/package/config/_WebsocketSecurityConfiguration.java
index <HASH>..<HASH> 100644
--- a/app/templates/src/main/java/package/config/_WebsocketSecurityConfiguration.java
+++ b/app/templates/src/main/ja... | Fix security issue with tracking logged in users with websocket
fix #<I> | jhipster_generator-jhipster | train |
ab91382b45d97d2c2469d379664d5745656ab768 | diff --git a/src/clldutils/markup.py b/src/clldutils/markup.py
index <HASH>..<HASH> 100644
--- a/src/clldutils/markup.py
+++ b/src/clldutils/markup.py
@@ -1,10 +1,13 @@
import re
import sys
import typing
+import urllib.parse
+import attr
from tabulate import tabulate
-__all__ = ['Table', 'iter_markdown_tables',... | added functionality to manipulate links in markdown text | clld_clldutils | train |
9e16c1ecec0eb143f55680830fe9fb35b6d187a9 | diff --git a/src/Auth/Controller/UsersController.php b/src/Auth/Controller/UsersController.php
index <HASH>..<HASH> 100644
--- a/src/Auth/Controller/UsersController.php
+++ b/src/Auth/Controller/UsersController.php
@@ -47,12 +47,12 @@ class UsersController extends AbstractActionController
return $this->paginat... | [Auth,Organizations] Uses new SearchForm. | yawik_auth | train |
6ef73b2eb8c097f5fbccff9d2bd0b2b66b1b0ac9 | diff --git a/tests/AdapterTest.php b/tests/AdapterTest.php
index <HASH>..<HASH> 100644
--- a/tests/AdapterTest.php
+++ b/tests/AdapterTest.php
@@ -122,7 +122,8 @@ class AdapterTest extends TestCase
*/
public function testRename($adapter, $config, $options)
{
- $this->assertTrue($adapter->rename('... | Update AdapterTest.php | freyo_flysystem-qcloud-cos-v4 | train |
77dd62da316ff7f64d717fdeb86f7861a02e9597 | diff --git a/lib/plugin.js b/lib/plugin.js
index <HASH>..<HASH> 100644
--- a/lib/plugin.js
+++ b/lib/plugin.js
@@ -277,6 +277,27 @@ function plugin (options) {
}
}
+ // Wrap the conditions found for the friends path into an object which
+ // will be passed as an $elemMatch. This is ... | Fixes #<I>. Use $elemMatch to query friendships
This fixes the issue specifically for getting friendships of different
statuses, but would also pertain to querying friendhips by date.
Prior to this fix, conditions on the friendships array were not grouped
with $elemMatch, meaning that multiple embedded friendship doc... | Kamahl19_mongoose-friends-plugin | train |
f0f201666d4bb791c6af3321ffb20d089e9c34b0 | diff --git a/src/run.py b/src/run.py
index <HASH>..<HASH> 100644
--- a/src/run.py
+++ b/src/run.py
@@ -59,7 +59,8 @@ def run():
raise DirtyRepoException("Changes to the index or working tree."
"Commit them first .")
- story_fold_cross_validation()
+ train("na", "fbank_... | Retraining our best model without the bracket bug. | persephone-tools_persephone | train |
8091d6e14141607735210c9dbe664707d21de0d6 | diff --git a/solidity/test/LiquidityPoolV2Converter.js b/solidity/test/LiquidityPoolV2Converter.js
index <HASH>..<HASH> 100644
--- a/solidity/test/LiquidityPoolV2Converter.js
+++ b/solidity/test/LiquidityPoolV2Converter.js
@@ -36,7 +36,7 @@ contract('LiquidityPoolV2Converter', accounts => {
[new BN(8), new BN(... | Increase pool token's decimals for testing | bancorprotocol_contracts | train |
a191304fff42f61f64e54a3320bbca98ae391065 | diff --git a/config/webpack.config.prod.js b/config/webpack.config.prod.js
index <HASH>..<HASH> 100644
--- a/config/webpack.config.prod.js
+++ b/config/webpack.config.prod.js
@@ -31,7 +31,7 @@ if (env.stringified['process.env'].NODE_ENV !== '"production"') {
}
// Note: defined here because it will be used more than... | Insert css file into css folder and files inside media folder after build | calocan_rescape-helpers | train |
cad4bbfffe2b9c0d744fa78f9f7a1b0bb0168bdc | diff --git a/lib/reporter.js b/lib/reporter.js
index <HASH>..<HASH> 100644
--- a/lib/reporter.js
+++ b/lib/reporter.js
@@ -120,7 +120,17 @@ const AggregatedCoverageReporter = function(injector, logger, config, baseReport
};
this.onExit = function(done) {
- callThrough('onExit', done);
+ // We cannot call ... | Ensure we call done() on the async onExit to not prevent exitting after single run. Fixes #5 | joeljeske_karma-parallel | train |
f1583c2eeda6450e9dbaeeb52da784ee0c0abb30 | diff --git a/safe/impact_functions/generic/classified_polygon_landcover/impact_function.py b/safe/impact_functions/generic/classified_polygon_landcover/impact_function.py
index <HASH>..<HASH> 100644
--- a/safe/impact_functions/generic/classified_polygon_landcover/impact_function.py
+++ b/safe/impact_functions/generic/c... | Maybe this will make nosetests show the debug output | inasafe_inasafe | train |
e174dd6e5e0a9b4dea4c861dd536af303c6fb2ec | diff --git a/plugin/src/main/java/io/fabric8/maven/plugin/mojo/build/ResourceMojo.java b/plugin/src/main/java/io/fabric8/maven/plugin/mojo/build/ResourceMojo.java
index <HASH>..<HASH> 100644
--- a/plugin/src/main/java/io/fabric8/maven/plugin/mojo/build/ResourceMojo.java
+++ b/plugin/src/main/java/io/fabric8/maven/plugi... | fix up the logic so that we can have 2 resources of the same name but different targets and we properly include it in either the kubernetes.yml or openshift.yml | fabric8io_fabric8-maven-plugin | train |
38220486b9b3a8122a4729afc6b98e6480198398 | diff --git a/src/Reader/MzIdentMlReader1r1.php b/src/Reader/MzIdentMlReader1r1.php
index <HASH>..<HASH> 100644
--- a/src/Reader/MzIdentMlReader1r1.php
+++ b/src/Reader/MzIdentMlReader1r1.php
@@ -700,7 +700,7 @@ class MzIdentMlReader1r1 implements MzIdentMlReader1Interface
$peptide->setPositionStart((int) $... | Fixed all peptide results being detected as decoys | PGB-LIV_php-ms | train |
7bb12a9bfee3031080218f505cc87c9d8b43a707 | diff --git a/examples/basic.js b/examples/basic.js
index <HASH>..<HASH> 100644
--- a/examples/basic.js
+++ b/examples/basic.js
@@ -11,24 +11,21 @@ igneous.set( 's3_bucket', 'TEST' );
igneous.createFlows({
'stylesheets.css': {
type: 'css',
- files: [
- 'styles/layout.css',
- 'styles/red.css'
+ paths: [
+ '... | Enabled use of folders as paths | Fauntleroy_Igneous | train |
798fb608b1e3ca89414ac13faa4e4eca55fec84d | diff --git a/choco/src/main/java/btrplace/solver/choco/runner/staticPartitioning/FixedPartitionSize.java b/choco/src/main/java/btrplace/solver/choco/runner/staticPartitioning/FixedPartitionSize.java
index <HASH>..<HASH> 100644
--- a/choco/src/main/java/btrplace/solver/choco/runner/staticPartitioning/FixedPartitionSize.... | Maintain the nodes and the VMs ids across partitions | btrplace_scheduler | train |
0ce27b9725f768ce908acb5a2666048b3ee3311c | diff --git a/Test/Controller/Front/AbstractFrontControllerTestCase.php b/Test/Controller/Front/AbstractFrontControllerTestCase.php
index <HASH>..<HASH> 100755
--- a/Test/Controller/Front/AbstractFrontControllerTestCase.php
+++ b/Test/Controller/Front/AbstractFrontControllerTestCase.php
@@ -79,4 +79,16 @@ class Abstract... | Added additional guest check in wishlist test | WellCommerce_CouponBundle | train |
38991f018e16226d1e6dd63e7986465770e42e1f | diff --git a/Auth/OpenID/AX.php b/Auth/OpenID/AX.php
index <HASH>..<HASH> 100644
--- a/Auth/OpenID/AX.php
+++ b/Auth/OpenID/AX.php
@@ -15,6 +15,10 @@ define('Auth_OpenID_AX_NS_URI',
// ask for as many values as the OP can provide.
define('Auth_OpenID_AX_UNLIMITED_VALUES', 'unlimited');
+// Minimum supported alias l... | [project @ Test minimum supported alias length] | openid_php-openid | train |
12067d8c6fd64182841e84cb13dce823f189ad46 | diff --git a/lib/assignable_values/active_record.rb b/lib/assignable_values/active_record.rb
index <HASH>..<HASH> 100644
--- a/lib/assignable_values/active_record.rb
+++ b/lib/assignable_values/active_record.rb
@@ -8,10 +8,10 @@ module AssignableValues
restriction_type.new(self, property, options, &values)
... | remove .authorized_values_for macro (which really belongs into consul) | makandra_assignable_values | train |
f1af353e5f8c07ea4a98334053585882dffce624 | diff --git a/dockerclient/client.go b/dockerclient/client.go
index <HASH>..<HASH> 100644
--- a/dockerclient/client.go
+++ b/dockerclient/client.go
@@ -581,7 +581,12 @@ func (e *ClientExecutor) LoadImage(from string) (*docker.Image, error) {
var pullErr error
func() { // A scope for defer
pullWriter := imagepr... | Treat errors returned by pullWriter.Close() as pull erorrs
Now that the code is in the shape we want, don't ignore errors
returned by pullWriter.Close, and treat them same as errors from
e.Client.PullImage. | openshift_imagebuilder | train |
c2782ff682a7b419716fc4a52cbea1dd762a7cfd | diff --git a/lib/postmark/api_client.rb b/lib/postmark/api_client.rb
index <HASH>..<HASH> 100644
--- a/lib/postmark/api_client.rb
+++ b/lib/postmark/api_client.rb
@@ -1,6 +1,7 @@
module Postmark
class ApiClient
attr_reader :http_client, :max_retries
+ attr_writer :max_batch_size
def initialize(api_ke... | Add Postmark::ApiClient#deliver and Postmark::ApiClient#deliver_in_batches methods. | wildbit_postmark-gem | train |
0836f3dfadad09a556c75e9c24d0a7dd70c8a4ae | diff --git a/modules/activiti-cycle/src/main/java/org/activiti/cycle/CycleComponentFactory.java b/modules/activiti-cycle/src/main/java/org/activiti/cycle/CycleComponentFactory.java
index <HASH>..<HASH> 100644
--- a/modules/activiti-cycle/src/main/java/org/activiti/cycle/CycleComponentFactory.java
+++ b/modules/activiti... | Activiti Cycle: added support for referencing classes in the @ExcludesCycleComponents annotation. | Activiti_Activiti | train |
be20ddea481703a65c858c8f9eafa9965fc8fffb | diff --git a/doc/source/custom_directives.py b/doc/source/custom_directives.py
index <HASH>..<HASH> 100644
--- a/doc/source/custom_directives.py
+++ b/doc/source/custom_directives.py
@@ -32,25 +32,18 @@ def flag(argument):
return True
-def wraps_role(name, rawtext, text, lineno, inliner, options={}, conten... | docs: update custom directives | swistakm_pyimgui | train |
728ac9be520ed4f0889422166a6220294e498cde | diff --git a/jhipster-framework/src/main/java/io/github/jhipster/domain/util/JSR310DateConverters.java b/jhipster-framework/src/main/java/io/github/jhipster/domain/util/JSR310DateConverters.java
index <HASH>..<HASH> 100644
--- a/jhipster-framework/src/main/java/io/github/jhipster/domain/util/JSR310DateConverters.java
+... | add support for the java.time.Duration type | jhipster_jhipster | train |
86c1b4a0907143ff52a929ebcc65f883991287ad | diff --git a/troposphere/elasticsearch.py b/troposphere/elasticsearch.py
index <HASH>..<HASH> 100644
--- a/troposphere/elasticsearch.py
+++ b/troposphere/elasticsearch.py
@@ -64,6 +64,7 @@ class Domain(AWSObject):
'DomainName': (basestring, False),
'EBSOptions': (EBSOptions, False),
'Elastics... | Add support for ElasticsearchVersion in Elasticsearch Domain (#<I>) | cloudtools_troposphere | train |
306c507ee9f9f976d822499dc410addd1df5f0b6 | diff --git a/.travis/checkSyntax.php b/.travis/checkSyntax.php
index <HASH>..<HASH> 100644
--- a/.travis/checkSyntax.php
+++ b/.travis/checkSyntax.php
@@ -6,7 +6,7 @@
*/
function read_dir($dir, $ext = null)
{
- $list = [];
+ $list = array();
$dir .= '/';
if (($res = opendir($dir)) === false) {
... | Updated travis script to be <I> compliant | PHPSocialNetwork_phpfastcache | train |
51a0144cad41ab16939370245a0e9b9c2b54ba01 | diff --git a/src/main/org/codehaus/groovy/runtime/DefaultGroovyStaticMethods.java b/src/main/org/codehaus/groovy/runtime/DefaultGroovyStaticMethods.java
index <HASH>..<HASH> 100644
--- a/src/main/org/codehaus/groovy/runtime/DefaultGroovyStaticMethods.java
+++ b/src/main/org/codehaus/groovy/runtime/DefaultGroovyStaticMe... | GROOVY-<I> : support sleep(seconds) as static method on Object
git-svn-id: <URL> | groovy_groovy-core | train |
ddcda4b1a9dc7e84c80e9bbf6aa6b8dbfffeed66 | diff --git a/bl/integration/drivers/azure.js b/bl/integration/drivers/azure.js
index <HASH>..<HASH> 100644
--- a/bl/integration/drivers/azure.js
+++ b/bl/integration/drivers/azure.js
@@ -66,7 +66,7 @@ let lib = {
let profile = {
firstName: soajsResponse.profile.given_name,
lastName: soajsResponse.profile.fam... | assure email is set when azure login happens | soajs_soajs.oauth | train |
e62d09d770e62228c8cf637500f45b1d2904b390 | diff --git a/cleverhans/picklable_model.py b/cleverhans/picklable_model.py
index <HASH>..<HASH> 100644
--- a/cleverhans/picklable_model.py
+++ b/cleverhans/picklable_model.py
@@ -80,7 +80,7 @@ class MLP(PicklableModel):
out = ordered_union(out, layer.get_params())
return out
- def fprop(self,... | make all layers take kwargs (they were meant to before but not enforced) | tensorflow_cleverhans | train |
fb945654e6b1ff9855fb2c3e551eaff98c31a94c | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `CheckMKTags`: Read host tags by one or more objects from category `C__CATG__CMK_TAG`
- `API::rawRequest... | Get list of constants for virtual categories
Very useful to blacklist them | bheisig_i-doit-api-client-php | train |
d9085e9e37669624f1e716023cd91e6aeadd3c64 | diff --git a/codec-http/src/main/java/io/netty/handler/codec/http/MixedFileUpload.java b/codec-http/src/main/java/io/netty/handler/codec/http/MixedFileUpload.java
index <HASH>..<HASH> 100644
--- a/codec-http/src/main/java/io/netty/handler/codec/http/MixedFileUpload.java
+++ b/codec-http/src/main/java/io/netty/handler/c... | Fix in addContent when switching from MemoryAttribute if it is done when last buffer added, in order to not close immediately the underlying file before adding the last buffer. | netty_netty | train |
610bfcbaa65511ee779eedd8943b8a2189c8e490 | diff --git a/core/CORE_NAILS_Model.php b/core/CORE_NAILS_Model.php
index <HASH>..<HASH> 100644
--- a/core/CORE_NAILS_Model.php
+++ b/core/CORE_NAILS_Model.php
@@ -132,11 +132,11 @@ class CORE_NAILS_Model extends CI_Model
/**
* Creates a new object
- * @param array $data The data to create th... | Update to Model autoTimestamps
If `tableAutoSetTimestamps` is true then models will automatically generate the `created` and `modified` timestamps. It is now possible to still allow automation, but if a manual version is provided, it will be used. | nails_common | train |
0876c1004550b32d44ee42a52d386a1242a1782b | diff --git a/src/Bundle/Form/ScalarObjectType.php b/src/Bundle/Form/ScalarObjectType.php
index <HASH>..<HASH> 100644
--- a/src/Bundle/Form/ScalarObjectType.php
+++ b/src/Bundle/Form/ScalarObjectType.php
@@ -8,6 +8,8 @@ use Symfony\Component\Form\Extension\Core\Type\IntegerType;
use Symfony\Component\Form\Extension\Cor... | ScalarObjectType Form Type accepts also scalar values and automatically converts them to objects | vaniocz_doctrine-generic-types | train |
c2049f837c0152a400fbba0a075389c8f2812158 | diff --git a/panoramix/bin/panoramix b/panoramix/bin/panoramix
index <HASH>..<HASH> 100755
--- a/panoramix/bin/panoramix
+++ b/panoramix/bin/panoramix
@@ -7,20 +7,18 @@ import json
from subprocess import Popen
from flask.ext.script import Manager
+from panoramix import app
from flask.ext.migrate import MigrateComm... | Automate Panoramix role creation | apache_incubator-superset | train |
cb6436817adc75e0e6c48ef7cbf0af00b1ec40d2 | diff --git a/anyconfig/parser.py b/anyconfig/parser.py
index <HASH>..<HASH> 100644
--- a/anyconfig/parser.py
+++ b/anyconfig/parser.py
@@ -13,8 +13,6 @@ INT_PATTERN = re.compile(r"^(\d|([1-9]\d+))$")
BOOL_PATTERN = re.compile(r"^(true|false)$", re.I)
STR_PATTERN = re.compile(r"^['\"](.*)['\"]$")
-PATH_SEPS = ('/', ... | refactor: remove parse_path and its test cases from .parser | ssato_python-anyconfig | train |
069c971eaf9ba7dbbbaff4e5e86a8912d818289a | diff --git a/manifest.php b/manifest.php
index <HASH>..<HASH> 100755
--- a/manifest.php
+++ b/manifest.php
@@ -28,7 +28,7 @@ return array(
'label' => 'LTI Delivery Tool Provider',
'description' => 'The LTI Delivery Tool Provider allows third party applications to embed deliveries created in Tao',
'license' ... | increave version to <I> | oat-sa_extension-tao-ltideliveryprovider | train |
605cbed730e05b8e2e2dc59661248f4940120ba5 | diff --git a/Makefile b/Makefile
index <HASH>..<HASH> 100644
--- a/Makefile
+++ b/Makefile
@@ -9,4 +9,4 @@ lint:
flake8 ./pdblp
test:
- python -m unittest pdblp.tests.test_pdblp
+ python -m unittest -v pdblp.tests.test_pdblp
diff --git a/pdblp/pdblp.py b/pdblp/pdblp.py
index <HASH>..<HASH> 100644
--- a/pdblp/pdblp... | fixed ref_hist with pandas <I>, added longdata option | matthewgilbert_pdblp | train |
c1b0080018939585ee5f168e20c70d6ad4cea79f | diff --git a/djcelery/models.py b/djcelery/models.py
index <HASH>..<HASH> 100644
--- a/djcelery/models.py
+++ b/djcelery/models.py
@@ -1,12 +1,13 @@
from __future__ import absolute_import, unicode_literals
from datetime import timedelta, datetime
-from time import time, mktime
+from time import time, mktime, gmtime... | Fix WorkerState.is_alive() not accurate when settings.USE_TZ = True and the local timezone is not UTC | celery_django-celery | train |
6a45c62c51865ff653da1d2cfad7bd579833678d | diff --git a/landsat/general_helper.py b/landsat/general_helper.py
index <HASH>..<HASH> 100644
--- a/landsat/general_helper.py
+++ b/landsat/general_helper.py
@@ -1,9 +1,4 @@
-# USGS Landsat Imagery Util
-#
-#
-# Author: developmentseed
-# Contributer: scisco, KAPPS-, kamicut
-#
+# Landsat Util
# License: CC0 1.0 Univ... | check if there is value before conversion | developmentseed_landsat-util | train |
57650d824ca17b64cf11c27d57c2aa8a894f6071 | diff --git a/pabot/result_merger.py b/pabot/result_merger.py
index <HASH>..<HASH> 100644
--- a/pabot/result_merger.py
+++ b/pabot/result_merger.py
@@ -64,7 +64,7 @@ class ResultMerger(SuiteVisitor):
for keyword in suite.keywords:
self.current.keywords.append(keyword)
else:... | result_merger: ensure same source | mkorpela_pabot | train |
5f70895661fdacb9ac8926e9c00ae14a54a1da34 | diff --git a/spec/adhearsion/call_spec.rb b/spec/adhearsion/call_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/adhearsion/call_spec.rb
+++ b/spec/adhearsion/call_spec.rb
@@ -32,7 +32,6 @@ module Adhearsion
its(:end_reason) { should be == nil }
it { should be_active }
- its(:commands) { should be_a Call:... | [CS] Drop a test for the type of a call's command registry | adhearsion_adhearsion | train |
622ff385ba8570fa4b1bb5469b483422e6745fc8 | diff --git a/swipe.js b/swipe.js
index <HASH>..<HASH> 100644
--- a/swipe.js
+++ b/swipe.js
@@ -159,7 +159,7 @@ Swipe.prototype = {
this.element.removeEventListener('oTransitionEnd', this, false);
this.element.removeEventListener('transitionend', this, false);
}
- window.removeEventListener... | fixed removeEventListener not working for resize event | lyfeyaj_swipe | train |
87f222b451865db67859a30ca4045cb2d48adbe3 | diff --git a/rets/session.py b/rets/session.py
index <HASH>..<HASH> 100644
--- a/rets/session.py
+++ b/rets/session.py
@@ -24,7 +24,7 @@ class Session(object):
allowed_auth = ['basic', 'digest']
- def __init__(self, login_url, username, password=None, version='1.7.2', http_auth='digest',
+ def __init__(s... | Not supplying the default version, letting the server's login response dictate. | refindlyllc_rets | train |
2efbd01d6c8386ed27bdd4113b2602e3a747ef38 | diff --git a/src/Presenters/Presenter.php b/src/Presenters/Presenter.php
index <HASH>..<HASH> 100644
--- a/src/Presenters/Presenter.php
+++ b/src/Presenters/Presenter.php
@@ -142,7 +142,7 @@ abstract class Presenter extends BasePresenter
{
$path = '';
try {
- $path = '/uploads/'.$model... | get image src in presenter | TypiCMS_Core | train |
675a0835a015ca38b40a92d7303fcafddd50980b | diff --git a/netx.go b/netx.go
index <HASH>..<HASH> 100644
--- a/netx.go
+++ b/netx.go
@@ -199,7 +199,7 @@ func Resolve(network string, addr string) (*net.TCPAddr, error) {
return nil, errors.New("Unsupported network: %v", network)
}
- ip, port, err := resolve(addr)
+ ip, port, err := resolve(network, addr)
if... | Take network into account when resolving | getlantern_netx | train |
4a663aac5ab0831c31f349e60c56474f8675694d | diff --git a/openquake.cfg b/openquake.cfg
index <HASH>..<HASH> 100644
--- a/openquake.cfg
+++ b/openquake.cfg
@@ -15,7 +15,7 @@
[celery]
# enable celery only if you have a cluster
-use_celery = false
+use_celery = true
# make sure workers are terminated when tasks are revoked
terminate_workers_on_revoke = true... | The psha calculator is a tiling calculator
Former-commit-id: b2d<I>a<I>ddd7b0c<I>fe<I>b3e<I>cf<I>c0 | gem_oq-engine | train |
a5a0d48348302bd6579ff68832ecd85196e64d1c | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -18,16 +18,6 @@ function plugin(options) {
options.replaceInExtensions = options.replaceInExtensions || ['.js', '.css', '.html', '.hbs'];
- function fmtPath(base, filePath) {
- var newPath = path.relative(base, file... | profit from hoisting to ease readability | TheDancingCode_gulp-rev-rewrite | train |
3da4357c0cc5d528b3ef49307f7a34db40eaba0e | diff --git a/cluster.go b/cluster.go
index <HASH>..<HASH> 100644
--- a/cluster.go
+++ b/cluster.go
@@ -53,6 +53,8 @@ type ClusterOptions struct {
// Following options are copied from Options struct.
+ Dialer func(network, addr string) (net.Conn, error)
+
OnConnect func(*Conn) error
Password string
@@ -122,6... | Pass network and addr to dialer | go-redis_redis | train |
56fbfa439b555244d351299aaa4a03050463f010 | diff --git a/context.go b/context.go
index <HASH>..<HASH> 100644
--- a/context.go
+++ b/context.go
@@ -45,6 +45,7 @@ func (c *Context) Render(code int, viewName string, data interface{}) (err error
// String returns string format
func (c *Context) String(code int, s string) (err error) {
+ c.Writer.Header().Set("Co... | added content type to "text/plain; charset=utf-8" for string function | jasonsoft_napnap | train |
9d99bc5c61d6ba870b27f2f64e37669f4f6229d3 | diff --git a/src/Factory/AbstractFieldsetInputFilterFactory.php b/src/Factory/AbstractFieldsetInputFilterFactory.php
index <HASH>..<HASH> 100644
--- a/src/Factory/AbstractFieldsetInputFilterFactory.php
+++ b/src/Factory/AbstractFieldsetInputFilterFactory.php
@@ -18,14 +18,14 @@ use Zend\ServiceManager\Factory\FactoryIn... | Changed property and getter/setter order | rkeet_zf-doctrine-form | train |
30bc4d843422bdca0ece42a967d67588ce040f32 | diff --git a/core/ghost.js b/core/ghost.js
index <HASH>..<HASH> 100644
--- a/core/ghost.js
+++ b/core/ghost.js
@@ -230,6 +230,9 @@ Ghost.prototype.initTheme = function (app) {
var self = this;
return function initTheme(req, res, next) {
app.set('view engine', 'hbs');
+ // return the correct mi... | Fix for WOFF files
- get express to return the correct mime type for woff files | TryGhost_Ghost | train |
362e13dd21bb48f178638aca981b45d8cbd17a22 | diff --git a/test/6 - build.js b/test/6 - build.js
index <HASH>..<HASH> 100644
--- a/test/6 - build.js
+++ b/test/6 - build.js
@@ -1612,7 +1612,7 @@ describe('File -> ../code/6 - build.js\n', function() {
'version': 3,
'sources': ['source/treasure.js'],
... | update for newer uglify | nightmode_feri | train |
ad1de5d3dad066d00da1310802ba83580a87fe13 | diff --git a/detect_secrets/core/baseline.py b/detect_secrets/core/baseline.py
index <HASH>..<HASH> 100644
--- a/detect_secrets/core/baseline.py
+++ b/detect_secrets/core/baseline.py
@@ -235,6 +235,12 @@ def format_baseline_for_output(baseline):
:type baseline: dict
:rtype: str
"""
+ for filename, sec... | ordered hashes, for nicer diffs | Yelp_detect-secrets | train |
80c671e231c67cb696c35fe341e06b0d6d151a50 | diff --git a/core/src/main/java/org/woelker/jimix/core/JsonWriter.java b/core/src/main/java/org/woelker/jimix/core/JsonWriter.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/woelker/jimix/core/JsonWriter.java
+++ b/core/src/main/java/org/woelker/jimix/core/JsonWriter.java
@@ -16,6 +16,8 @@ class JsonWrite... | core: fixed serialization of newline characters | manuel-woelker_jimix | train |
c0fa2c7ba6bcbe47af9bb865f363691544b2d77c | diff --git a/classes/phing/tasks/ext/CapsuleTask.php b/classes/phing/tasks/ext/CapsuleTask.php
index <HASH>..<HASH> 100644
--- a/classes/phing/tasks/ext/CapsuleTask.php
+++ b/classes/phing/tasks/ext/CapsuleTask.php
@@ -393,7 +393,7 @@ class CapsuleTask extends Task {
// reset value, and then
... | fixed "reference" to project instance (undefined variable) | phingofficial_phing | train |
68359b62e5ba51a5b8848d23ddf41061442ceb9a | diff --git a/src/language/CSSUtils.js b/src/language/CSSUtils.js
index <HASH>..<HASH> 100644
--- a/src/language/CSSUtils.js
+++ b/src/language/CSSUtils.js
@@ -22,7 +22,7 @@
*/
-/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50, regexp: true */
+/*jslint vars: true, plusplus: tru... | Fix the group start line and group start char for nested levels. | adobe_brackets | train |
0ba3e5405746d0276a33b3a07f254c1a1ce7e453 | diff --git a/lib/cb/clients/user.rb b/lib/cb/clients/user.rb
index <HASH>..<HASH> 100755
--- a/lib/cb/clients/user.rb
+++ b/lib/cb/clients/user.rb
@@ -13,7 +13,7 @@ module Cb
def temporary_password(external_id)
query = { 'ExternalID' => external_id }
- response = api_client.cb_post(Cb.con... | changing client from POST to GET, accurate response | careerbuilder_ruby-cb-api | train |
011f77b33524e0248760436642b295cc36d2e564 | diff --git a/webapps/ui/common/scripts/module/external-tasks-common/controllers/external-tasks-tab-controller.js b/webapps/ui/common/scripts/module/external-tasks-common/controllers/external-tasks-tab-controller.js
index <HASH>..<HASH> 100644
--- a/webapps/ui/common/scripts/module/external-tasks-common/controllers/exte... | fix(pagination): reset page for external tasks tab
related to CAM-<I> | camunda_camunda-bpm-platform | train |
9d69c0e79563145c2ec21066cbcdc6a5a74d727a | diff --git a/core/codegen/src/main/java/org/overture/codegen/assistant/TypeAssistantCG.java b/core/codegen/src/main/java/org/overture/codegen/assistant/TypeAssistantCG.java
index <HASH>..<HASH> 100644
--- a/core/codegen/src/main/java/org/overture/codegen/assistant/TypeAssistantCG.java
+++ b/core/codegen/src/main/java/o... | Added a utility method for generating a method type from the parameter types and the result type of a function or operation type. | overturetool_overture | train |
13e414c0f6854185fba146fc5f520aad152308a9 | diff --git a/gcloud/bigquery/client.py b/gcloud/bigquery/client.py
index <HASH>..<HASH> 100644
--- a/gcloud/bigquery/client.py
+++ b/gcloud/bigquery/client.py
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-"""gcloud bigquery client for inter... | Use consistent branding / phrasing in client module docstrings.
Closes #<I>. | googleapis_google-cloud-python | train |
606c9754819f370418da4e4631b7345c5f272d1e | diff --git a/salesforce/testrunner/settings.py b/salesforce/testrunner/settings.py
index <HASH>..<HASH> 100644
--- a/salesforce/testrunner/settings.py
+++ b/salesforce/testrunner/settings.py
@@ -20,10 +20,10 @@ DATABASES = {
# in order to protect private secret values from unintentional committing.
'salesforce': {
... | wish i could figure out a better way to get this info to travis | django-salesforce_django-salesforce | train |
d5602ef26d60c36389fcf6bb0ec9608dd83a7591 | diff --git a/src/automate/extensions/arduino/arduino_service.py b/src/automate/extensions/arduino/arduino_service.py
index <HASH>..<HASH> 100644
--- a/src/automate/extensions/arduino/arduino_service.py
+++ b/src/automate/extensions/arduino/arduino_service.py
@@ -377,25 +377,28 @@ class ArduinoService(AbstractSystemServ... | Arduino: fix reloading (pull up resistor settings were not set up after reload) | tuomas2_automate | train |
8444d6a0058d86445948106c2ccf4ca3af449e5d | diff --git a/app/models/lit/localization.rb b/app/models/lit/localization.rb
index <HASH>..<HASH> 100644
--- a/app/models/lit/localization.rb
+++ b/app/models/lit/localization.rb
@@ -10,7 +10,7 @@ module Lit
## ASSOCIATIONS
belongs_to :locale
- belongs_to :localization_key
+ belongs_to :localization_k... | Whenever localization is updated, touch localization_key
This may have negative inpact on performance, to be verified | prograils_lit | train |
432308d91b53294ba7928fd0aac3a9f62f66fc57 | diff --git a/cf/commands/application/app.go b/cf/commands/application/app.go
index <HASH>..<HASH> 100644
--- a/cf/commands/application/app.go
+++ b/cf/commands/application/app.go
@@ -2,7 +2,6 @@ package application
import (
"fmt"
- "strconv"
"strings"
. "github.com/cloudfoundry/cli/cf/i18n"
@@ -135,14 +134,1... | Hide app-ports features
[finish #<I>] | cloudfoundry_cli | train |
76adf6048bd844a3f492a2d9df33f877bfdea359 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,7 @@ setup(
packages=find_packages(include=["gql*"]),
install_requires=[
'six>=1.10.0',
- 'graphql-core>=0.5.0,<2',
+ 'graphql-core>=2,<3',
'promise>=2.0,<3',
'reque... | Support graphql-core 2 (#<I>) | graphql-python_gql | train |
d9ad7326f26deef05b4816ed76bbe1ad2698d1e3 | diff --git a/mutant/contrib/geo/__init__.py b/mutant/contrib/geo/__init__.py
index <HASH>..<HASH> 100644
--- a/mutant/contrib/geo/__init__.py
+++ b/mutant/contrib/geo/__init__.py
@@ -0,0 +1,3 @@
+
+from ...hacks import patch_postgis_bad_geomery_escape
+patch_postgis_bad_geomery_escape()
\ No newline at end of file
diff... | Added a hack to fix bad geometry escapes with django <I>.X and PostgreSQL <I> | charettes_django-mutant | train |
9aacf20e9de29cfa3f75dc2883fcb7ce44a51288 | diff --git a/meuhdb/core.py b/meuhdb/core.py
index <HASH>..<HASH> 100644
--- a/meuhdb/core.py
+++ b/meuhdb/core.py
@@ -28,14 +28,6 @@ except ImportError:
pass
try:
- import jsonlib
- DUMPER.update({'jsonlib': jsonlib.dumps})
- LOADER.update({'jsonlib': jsonlib.loads})
- DEFAULT_BACKEND = 'jsonlib'
-... | according to basic tests, reordering packages priorities | brunobord_meuhdb | train |
12bc21f95ea0cf20734da9dcc26d2841fa6b6d2f | diff --git a/errors.py b/errors.py
index <HASH>..<HASH> 100644
--- a/errors.py
+++ b/errors.py
@@ -38,6 +38,13 @@ class InjectDecoratorAppliedToNonInitError(Error):
self, '@inject cannot be applied to non-initializer {0}'.format(fn.__name__))
+class InjectingNoneDisallowedError(Error):
+
+ def __ini... | Allows not injecting None, and makes it the default. | google_pinject | train |
35ed5f95c57324371cbe3ab703cea64698468d30 | diff --git a/optaplanner-core/src/main/java/org/optaplanner/core/config/score/director/ScoreDirectorFactoryConfig.java b/optaplanner-core/src/main/java/org/optaplanner/core/config/score/director/ScoreDirectorFactoryConfig.java
index <HASH>..<HASH> 100644
--- a/optaplanner-core/src/main/java/org/optaplanner/core/config/... | Phreak option, but commented out | kiegroup_optaplanner | train |
26f0c2f4ca3e599642324bbb0bc7767e385eba54 | diff --git a/lib/browser-sync.js b/lib/browser-sync.js
index <HASH>..<HASH> 100644
--- a/lib/browser-sync.js
+++ b/lib/browser-sync.js
@@ -139,7 +139,6 @@ BrowserSync.prototype.handleSuccess = function (options, ports) {
if (err) {
options.online = false;
} else {
- ... | Default `open` option to "local" | BrowserSync_browser-sync | train |
66e68ddf75c0aefcffab93c8d6791cf423705d2a | diff --git a/dirlistproc/DirectoryListProcessor.py b/dirlistproc/DirectoryListProcessor.py
index <HASH>..<HASH> 100644
--- a/dirlistproc/DirectoryListProcessor.py
+++ b/dirlistproc/DirectoryListProcessor.py
@@ -30,7 +30,7 @@ import argparse
import os
import sys
import traceback
-from typing import List, Optional, Ca... | Version <I> -- added file_filter_2 parameter, a file filter with both the file name, directory and options. | hsolbrig_dirlistproc | train |
40e5d0364706743804001cb6642eb6e0683d4913 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,7 @@ Features:
- Optionally avoid downcasing keywords
- Added Rails generator to create an initializer with the default settings.
- Added a configuration option `truncate_site_title_first` whic... | Format dates as ISO <I> | kpumuk_meta-tags | train |
3cce7628e4e3a4f43ed53db1f2756c4d9d1f1e00 | diff --git a/activerecord/test/cases/schema_dumper_test.rb b/activerecord/test/cases/schema_dumper_test.rb
index <HASH>..<HASH> 100644
--- a/activerecord/test/cases/schema_dumper_test.rb
+++ b/activerecord/test/cases/schema_dumper_test.rb
@@ -2,6 +2,7 @@ require "cases/helper"
require 'support/schema_dumping_helper'
... | Reset ActiveRecord::SchemaDumper.ignore_tables value after changed in tests | rails_rails | train |
0273fa7bb327b88ab626492b8fd9a2061bf4a6ba | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -83,15 +83,15 @@ Check each state.
**NOTE**: Type `'\\'` for input `'\'`.
Each state has the following templates:
- 1 __entry__ - used for set condition (template) to entry state.
- 2 __leave__ - used for set conditi... | Add method '.current_state' for return current statename. | gera-gas_iparser | train |
e4c8d1fd0824d72d56e3b203e47b62284dc5d806 | diff --git a/irc/client.py b/irc/client.py
index <HASH>..<HASH> 100644
--- a/irc/client.py
+++ b/irc/client.py
@@ -460,9 +460,49 @@ class ServerNotConnectedError(ServerConnectionError):
pass
-# Huh!? Crrrrazy EFNet doesn't follow the RFC: their ircd seems to
-# use \n as message separator! :P
-_linesep_regex... | Extracted a LineBuffer class for buffering lines | jaraco_irc | train |
ad8a085f384a08ea781e44f3eef63cb9f9b16518 | diff --git a/js/scoreFormatter.js b/js/scoreFormatter.js
index <HASH>..<HASH> 100644
--- a/js/scoreFormatter.js
+++ b/js/scoreFormatter.js
@@ -65,23 +65,27 @@ YoastSEO.ScoreFormatter.prototype.sortScores = function() {
YoastSEO.ScoreFormatter.prototype.outputOverallScore = function() {
var overallTarget = document.g... | Added N/A check for scoring, changed 0 - 3 to poor in stead of N/A | Yoast_YoastSEO.js | train |
622b4f4162507b1b207b7e1a8ef847f8fc6fb8c0 | diff --git a/airflow/dag_processing/processor.py b/airflow/dag_processing/processor.py
index <HASH>..<HASH> 100644
--- a/airflow/dag_processing/processor.py
+++ b/airflow/dag_processing/processor.py
@@ -408,9 +408,9 @@ class DagFileProcessor(LoggingMixin):
)
dttm = dag.following_schedule... | Refactor usage of unneeded function call (#<I>)
`ts` was created for `timezone.utcnow()` `dag_processor` but looks like it was not used for actual comparison. | apache_airflow | train |
d91ec764a6460484cfd9671415dd8776900d4996 | diff --git a/test/cluster/cluster.go b/test/cluster/cluster.go
index <HASH>..<HASH> 100644
--- a/test/cluster/cluster.go
+++ b/test/cluster/cluster.go
@@ -643,6 +643,8 @@ func (c *Cluster) DumpLogs(buildLog *buildlog.Log) {
return
}
+ // only fallback if all `flynn-host log` commands fail
+ shouldFallback :=... | test: Only do log fallback if all `flynn-host log` calls fail | flynn_flynn | train |
e8d41a27973c6906c4e14729aabd2f33dc4b5d91 | diff --git a/src/Node/SubExpression.php b/src/Node/SubExpression.php
index <HASH>..<HASH> 100755
--- a/src/Node/SubExpression.php
+++ b/src/Node/SubExpression.php
@@ -24,4 +24,16 @@ class SubExpression extends CompositeExpression
{
$visitor->visitSubExpression($this);
}
+
+ /**
+ * {@inheritDo... | Added getQueryItemsByTokenType support in SubExpression | gdbots_query-parser-php | train |
f265b81476659630a99af755fcdd8036462d715e | diff --git a/modules/contenta_enhancements/src/Controller/OpenApiDocs.php b/modules/contenta_enhancements/src/Controller/OpenApiDocs.php
index <HASH>..<HASH> 100644
--- a/modules/contenta_enhancements/src/Controller/OpenApiDocs.php
+++ b/modules/contenta_enhancements/src/Controller/OpenApiDocs.php
@@ -62,7 +62,11 @@ cl... | fix: only disable the appropriate resources in Open API | contentacms_contenta_jsonapi | train |
3448c13a0a8fa9f3fec0afed1f29ffe6d904505c | diff --git a/index_edit.php b/index_edit.php
index <HASH>..<HASH> 100644
--- a/index_edit.php
+++ b/index_edit.php
@@ -139,14 +139,14 @@ if ($action=="configure") {
}
$class_name=$block_name.'_WT_Module';
$block=new $class_name;
- echo "<table class=\"facts_table\" width=\"99%\">";
- echo "<tr><td class=\"facts_l... | Block configuration page - show the description of the block | fisharebest_webtrees | train |
f000a560bae2968ad2cb1931dea97831c35a47a9 | diff --git a/composer.json b/composer.json
index <HASH>..<HASH> 100644
--- a/composer.json
+++ b/composer.json
@@ -1,5 +1,5 @@
{
- "name": "bynder/bynder-php-sdk",
+ "name": "interdesign/bynder-php-sdk",
"description": "Bynder PHP Library",
"keywords": [
"bynder",
diff --git a/src/Bynder/Api/IAssetBankMan... | added getUsers, getCollections and getCollectionAssets functions | Bynder_bynder-php-sdk | train |
c114b12f6ed9b868a77b1631fb97c6b5ecbad360 | diff --git a/src/Extension/ResourceExtension.php b/src/Extension/ResourceExtension.php
index <HASH>..<HASH> 100755
--- a/src/Extension/ResourceExtension.php
+++ b/src/Extension/ResourceExtension.php
@@ -151,7 +151,11 @@ class ResourceExtension extends CompilerExtension
protected function createLoader()
{
$robot ... | Bugfix: make it compatible with robot-loader >= <I> [closes #6] | contributte_di | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.