hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
2083565c7785246ad323570ccbab48934097375f | diff --git a/UniversalImageLoader/src/com/nostra13/universalimageloader/utils/FileUtils.java b/UniversalImageLoader/src/com/nostra13/universalimageloader/utils/FileUtils.java
index <HASH>..<HASH> 100644
--- a/UniversalImageLoader/src/com/nostra13/universalimageloader/utils/FileUtils.java
+++ b/UniversalImageLoader/src/... | Copy files with 8KB buffer size (instead of 1KB) | nostra13_Android-Universal-Image-Loader | train |
ef459e7b522af865e8e770c0f0427252313e77ad | diff --git a/shell.go b/shell.go
index <HASH>..<HASH> 100644
--- a/shell.go
+++ b/shell.go
@@ -37,6 +37,10 @@ func PathTemplate(parts ...string) func(...interface{}) string {
}
}
+func Quote(arg string) string {
+ return fmt.Sprintf("'%s'", strings.Replace(arg, "'", "'\\''", -1))
+}
+
func ErrExit() {
if p, ok ... | went back to no default quoting, but added Quote function | progrium_go-shell | train |
03e43edbd87552b424c6a764de5c4f8505e47b31 | diff --git a/src/plugins/composition.js b/src/plugins/composition.js
index <HASH>..<HASH> 100644
--- a/src/plugins/composition.js
+++ b/src/plugins/composition.js
@@ -45,7 +45,7 @@ module.exports = postcss.plugin(plugin, function() {
css.walkDecls("composes", function(decl) {
var selectors;
... | Actual tests for multiple composes statements
- decl.prev() seems a bit wonky, may need to rethink that check. Seems
to work for now though.
- Added some tests to make sure that it works with global(...)
- Minor optimization, only call unique once per selector we're
outputting instead of every single time they're comp... | tivac_modular-css | train |
d5fe6e4ddd59058ddb7fefb0fb44e5068a2c016a | diff --git a/inc/modules/export/xhtml/class-xhtml11.php b/inc/modules/export/xhtml/class-xhtml11.php
index <HASH>..<HASH> 100644
--- a/inc/modules/export/xhtml/class-xhtml11.php
+++ b/inc/modules/export/xhtml/class-xhtml11.php
@@ -562,7 +562,7 @@ class Xhtml11 extends ExportGenerator {
foreach ( $this->footnotes[ $i... | Pb <I> links footnotes (#<I>)
* Adds data-url attribute to links within footnotes | pressbooks_pressbooks | train |
831cf1420036aab4e315e96d413e3baa10518e1d | diff --git a/lib/bson/hash.rb b/lib/bson/hash.rb
index <HASH>..<HASH> 100644
--- a/lib/bson/hash.rb
+++ b/lib/bson/hash.rb
@@ -37,12 +37,12 @@ module BSON
# @see http://bsonspec.org/#/specification
#
# @since 2.0.0
- def to_bson(buffer = ByteBuffer.new)
+ def to_bson(buffer = ByteBuffer.new, valida... | RUBY-<I>: Hook validation into Document/Hash | mongodb_bson-ruby | train |
db97cba2911d22032f4ab5caab703196710ac423 | diff --git a/pkg/kubelet/kubelet_pods.go b/pkg/kubelet/kubelet_pods.go
index <HASH>..<HASH> 100644
--- a/pkg/kubelet/kubelet_pods.go
+++ b/pkg/kubelet/kubelet_pods.go
@@ -110,8 +110,8 @@ func makeMounts(pod *v1.Pod, podDir string, container *v1.Container, hostName, h
for _, mount := range container.VolumeMounts {
... | Fix nil pointer issue when making mounts for container | kubernetes_kubernetes | train |
a1fd50f160da70ac53855ef5d04ff99754b4b2f4 | diff --git a/provision/docker/docker.go b/provision/docker/docker.go
index <HASH>..<HASH> 100644
--- a/provision/docker/docker.go
+++ b/provision/docker/docker.go
@@ -141,7 +141,16 @@ func (c *container) create(commands []string) error {
if err != nil {
return err
}
- config := docker.Config{Image: "tsuru/python... | docker: added user for container create. | tsuru_tsuru | train |
5ef620f8613eaa1d042caa35b6429f5f608a395c | diff --git a/august/lock.py b/august/lock.py
index <HASH>..<HASH> 100644
--- a/august/lock.py
+++ b/august/lock.py
@@ -3,7 +3,7 @@ from enum import Enum
import datetime
import dateutil.parser
-from august.bridge import BridgeDetail
+from august.bridge import BridgeDetail, BridgeStatus
from august.device import Dev... | Add a bridge_is_online property to LockDetail
This allows us to normalize reporting of available
status in homeassistant | snjoetw_py-august | train |
26a65709db07dcf14e1cc35cfd39c4780a4f61a8 | diff --git a/client/extensions/woocommerce/app/products/products-list-row.js b/client/extensions/woocommerce/app/products/products-list-row.js
index <HASH>..<HASH> 100644
--- a/client/extensions/woocommerce/app/products/products-list-row.js
+++ b/client/extensions/woocommerce/app/products/products-list-row.js
@@ -43,7 ... | Add data-e2e-product to be specific for every product in list | Automattic_wp-calypso | train |
94aa733b1c2d2d8be634a3d6c9bab23369c04c83 | diff --git a/lib/solrizer/version.rb b/lib/solrizer/version.rb
index <HASH>..<HASH> 100644
--- a/lib/solrizer/version.rb
+++ b/lib/solrizer/version.rb
@@ -1,3 +1,3 @@
module Solrizer
- VERSION = "2.0.0.rc1"
+ VERSION = "2.0.0.rc2"
end | Update version to <I>.rc2 | samvera_solrizer | train |
a9019b9b8b23df90b4ffa4053bbd94de1c200a10 | diff --git a/environment/src/main/java/jetbrains/exodus/tree/patricia/ImmutableNode.java b/environment/src/main/java/jetbrains/exodus/tree/patricia/ImmutableNode.java
index <HASH>..<HASH> 100644
--- a/environment/src/main/java/jetbrains/exodus/tree/patricia/ImmutableNode.java
+++ b/environment/src/main/java/jetbrains/e... | more correct fix of XD-<I> | JetBrains_xodus | train |
7dd0e59d3dba21a61fa6209289cae45c3a87ee4c | diff --git a/Tests/Mailer/AuthCodeMailerTest.php b/Tests/Mailer/AuthCodeMailerTest.php
index <HASH>..<HASH> 100644
--- a/Tests/Mailer/AuthCodeMailerTest.php
+++ b/Tests/Mailer/AuthCodeMailerTest.php
@@ -41,7 +41,7 @@ class AuthCodeMailerTest extends TestCase
$user
->expects($this->any())
... | Fixed couple unit tests inconsistencies and typse (#<I>) | scheb_two-factor-bundle | train |
d05cffb40916426f0252f5a635ea3c8fa1ed1819 | diff --git a/src/Symfony/Component/BrowserKit/Response.php b/src/Symfony/Component/BrowserKit/Response.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/BrowserKit/Response.php
+++ b/src/Symfony/Component/BrowserKit/Response.php
@@ -123,8 +123,9 @@ class Response
*/
public function getHeader($heade... | [<I>] Static Code Analysis for Components | symfony_symfony | train |
43fdb86adfea4a7a5d2025274422cf10428e11bc | diff --git a/src/main/java/com/vdurmont/emoji/EmojiParser.java b/src/main/java/com/vdurmont/emoji/EmojiParser.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/vdurmont/emoji/EmojiParser.java
+++ b/src/main/java/com/vdurmont/emoji/EmojiParser.java
@@ -106,7 +106,7 @@ public class EmojiParser {
protected s... | Fix #7: Parsing to unicode with the thumbsdown emoji | vdurmont_emoji-java | train |
e04e0bd8b5e92b4fc8e916ed3b2d4283848c6379 | diff --git a/src/Awjudd/AssetProcessor/Commands/CleanupCommand.php b/src/Awjudd/AssetProcessor/Commands/CleanupCommand.php
index <HASH>..<HASH> 100644
--- a/src/Awjudd/AssetProcessor/Commands/CleanupCommand.php
+++ b/src/Awjudd/AssetProcessor/Commands/CleanupCommand.php
@@ -1,5 +1,6 @@
<?php namespace Awjudd\AssetProc... | Adding in the bulk of the logic for the cleanup command | awjudd_l4-assetprocessor | train |
8d7db657f476a27419d4a7f0aefebc923ab63262 | diff --git a/lib/jitsu/common/index.js b/lib/jitsu/common/index.js
index <HASH>..<HASH> 100644
--- a/lib/jitsu/common/index.js
+++ b/lib/jitsu/common/index.js
@@ -9,6 +9,7 @@ var fs = require('fs'),
path = require('path'),
util = require('util'),
flatiron = require('flatiron'),
+ dateformat = require(... | [refactor] Remove formatTime helper in favor of dateformat library. Updated formatApp time format. | nodejitsu_jitsu | train |
08b475778073ca554108b913a450f90969aa989a | diff --git a/code/actions/PublishItemWorkflowAction.php b/code/actions/PublishItemWorkflowAction.php
index <HASH>..<HASH> 100644
--- a/code/actions/PublishItemWorkflowAction.php
+++ b/code/actions/PublishItemWorkflowAction.php
@@ -36,10 +36,14 @@ class PublishItemWorkflowAction extends WorkflowAction {
$target->De... | FIX Ensure publish action completes
If the publish item action is triggered on an object _without_ versioned,
make sure the doPublish call is not explicitly made | symbiote_silverstripe-advancedworkflow | train |
ba7a5524c464ed9ef35eb0ea2d39a1524e3a4936 | diff --git a/src/TwigExtension.php b/src/TwigExtension.php
index <HASH>..<HASH> 100644
--- a/src/TwigExtension.php
+++ b/src/TwigExtension.php
@@ -54,6 +54,12 @@ class TwigExtension extends \Twig_Extension
}
}
+ /**
+ * Set the base url
+ *
+ * @param string|Slim\Http\Uri $baseUrl
+ *... | Add docblock for setBaseUrl | slimphp_Twig-View | train |
afdcde2a501596caa6e1335bbc6a154956ea11a7 | diff --git a/lib/twitter-ads/version.rb b/lib/twitter-ads/version.rb
index <HASH>..<HASH> 100644
--- a/lib/twitter-ads/version.rb
+++ b/lib/twitter-ads/version.rb
@@ -2,5 +2,5 @@
# Copyright (C) 2015 Twitter, Inc.
module TwitterAds
- VERSION = '1.0.0'.freeze
+ VERSION = '1.1.0'.freeze
end | Version bump to <I> (#<I>)
Bump the version to <I> | twitterdev_twitter-ruby-ads-sdk | train |
8122e736f8f69b76bca750ef0d602f74a2ecd458 | diff --git a/framework/Dbal/Drivers/Pgsql.php b/framework/Dbal/Drivers/Pgsql.php
index <HASH>..<HASH> 100644
--- a/framework/Dbal/Drivers/Pgsql.php
+++ b/framework/Dbal/Drivers/Pgsql.php
@@ -359,7 +359,7 @@ class Pgsql
public function find($class, $options = [])
{
- $query = new QueryBuilder($options... | added other usages of QueryBuilder with parameter 'options' | pr-of-it_t4 | train |
51fe953e13e28b88808a6f4a097e52be473d4b8d | diff --git a/model/SharedLibrariesRegistry.php b/model/SharedLibrariesRegistry.php
index <HASH>..<HASH> 100644
--- a/model/SharedLibrariesRegistry.php
+++ b/model/SharedLibrariesRegistry.php
@@ -19,11 +19,10 @@
*/
namespace oat\taoQtiItem\model;
-use oat\oatbox\AbstractRegistry;
-use common_ext_Extension;
-use com... | Sahre library registry extends ClientLibRegistry | oat-sa_extension-tao-itemqti | train |
325523b7b4b7a0d4ef809f9c14a8bb9c464a2ed8 | diff --git a/lib/beetle/deduplication_store.rb b/lib/beetle/deduplication_store.rb
index <HASH>..<HASH> 100644
--- a/lib/beetle/deduplication_store.rb
+++ b/lib/beetle/deduplication_store.rb
@@ -16,11 +16,13 @@ module Beetle
def initialize(hosts = "localhost:6379", db = 4)
@hosts = hosts
@db = db
+ ... | Only check the master file for the current master if it has changed since the last access to redis | xing_beetle | train |
331b4ea25c37c63c2621bad10176accbb56b3e09 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -2,22 +2,22 @@ module.exports = {
"extends": "semistandard",
"rules": {
"indent": [
- 2,
+ "error",
4,
{
"SwitchCase": 1
}
],
"space-before-function-paren": [
- ... | Use more human-comprehensible rule settings | girder_girder | train |
171c14186250c920693fec1b1b8fe4647229286f | diff --git a/bcbio/ngsalign/snap.py b/bcbio/ngsalign/snap.py
index <HASH>..<HASH> 100644
--- a/bcbio/ngsalign/snap.py
+++ b/bcbio/ngsalign/snap.py
@@ -5,7 +5,7 @@ import os
from bcbio import bam, utils
from bcbio.distributed.transaction import file_transaction
from bcbio.pipeline import config_utils
-from bcbio.ngsa... | SNAP aligner: use streaming de-duplication and sorting with samblaster and sambamba | bcbio_bcbio-nextgen | train |
fed7af6e09ec70efc8d8fa0550c01a48cb1dd006 | diff --git a/pygenstub.py b/pygenstub.py
index <HASH>..<HASH> 100644
--- a/pygenstub.py
+++ b/pygenstub.py
@@ -778,6 +778,8 @@ def get_pkg_paths(pkg_name, out_dir):
paths = []
try:
pkg = import_module(pkg_name)
+ if not hasattr(pkg, "__path__"):
+ return get_mod_paths(pkg_name, out_... | refactor: Fall back to -m if -p fails because of path | uyar_pygenstub | train |
5141a281d23ff7fdb6113f4cbca7956c352ca5f4 | diff --git a/src/knockout-froala.js b/src/knockout-froala.js
index <HASH>..<HASH> 100644
--- a/src/knockout-froala.js
+++ b/src/knockout-froala.js
@@ -42,6 +42,10 @@
options.events = {
initialized: function() {
editorInstance=this;
+ // provide froala editor instance for flexibility
+ if(allBindings.froa... | a fix for <I> framework integrations | froala_knockout-froala | train |
68c28b7e1d23b02840538ee9b29b7615d0b0ce07 | diff --git a/packages/vuetify/build/babel-transform-sass-paths.js b/packages/vuetify/build/babel-transform-sass-paths.js
index <HASH>..<HASH> 100644
--- a/packages/vuetify/build/babel-transform-sass-paths.js
+++ b/packages/vuetify/build/babel-transform-sass-paths.js
@@ -1,17 +1,12 @@
-var types = require('babel-types')... | fix: babel-transform-sass-paths (#<I>)
* fix sass resolve
* update code
* refactor | vuetifyjs_vuetify | train |
4ba75bd54e175cd04ee7b60545a6dd10e0e82179 | diff --git a/builtin/providers/aws/resource_aws_route.go b/builtin/providers/aws/resource_aws_route.go
index <HASH>..<HASH> 100644
--- a/builtin/providers/aws/resource_aws_route.go
+++ b/builtin/providers/aws/resource_aws_route.go
@@ -179,14 +179,18 @@ func resourceAwsRouteCreate(d *schema.ResourceData, meta interface{... | Retry finding route after creating it (#<I>)
The symptom is that a route "fails" to create, then every subsequent
`terraform apply` fails with RouteAlreadyExists.
CreateRoute was succeeding but the very next DescribeRouteTables
was not listing the new route. | hashicorp_terraform | train |
da0463cf5e93905978e5f9f8b64e75fc33a9c7af | diff --git a/activerecord/test/cases/associations/cascaded_eager_loading_test.rb b/activerecord/test/cases/associations/cascaded_eager_loading_test.rb
index <HASH>..<HASH> 100644
--- a/activerecord/test/cases/associations/cascaded_eager_loading_test.rb
+++ b/activerecord/test/cases/associations/cascaded_eager_loading_t... | Improve the tests to not call assert_nothing_raised | rails_rails | train |
9535ab94bdb176422ec95d44fd1e93064417307c | diff --git a/lib/CoreBot.js b/lib/CoreBot.js
index <HASH>..<HASH> 100755
--- a/lib/CoreBot.js
+++ b/lib/CoreBot.js
@@ -676,29 +676,6 @@ function Botkit(configuration) {
};
-
-
- botkit.debug = function() {
- if (configuration.debug) {
- var args = [];
- for (var k = 0; k < argum... | get rid of deprecated log and debug functions | howdyai_botkit | train |
62cbabcde37ab5553f5d84d1fc19bb96b59d8df6 | diff --git a/grails-core/src/main/groovy/org/grails/plugins/DefaultGrailsPlugin.java b/grails-core/src/main/groovy/org/grails/plugins/DefaultGrailsPlugin.java
index <HASH>..<HASH> 100644
--- a/grails-core/src/main/groovy/org/grails/plugins/DefaultGrailsPlugin.java
+++ b/grails-core/src/main/groovy/org/grails/plugins/De... | Use correct grailsApplication object for plugin binding | grails_grails-core | train |
df2ae4876c7b4d9c06aaf24290d0f3bd5dcab25c | diff --git a/acceptance/tests/modules/install/with_version.rb b/acceptance/tests/modules/install/with_version.rb
index <HASH>..<HASH> 100644
--- a/acceptance/tests/modules/install/with_version.rb
+++ b/acceptance/tests/modules/install/with_version.rb
@@ -20,9 +20,9 @@ agents.each do |agent|
step " install module ... | (PUP-<I>) Revert changes to with_version
Changes were made to with_version for Windows to use beaker's puppet
command instead of Command.new directly. This change is now reverted. | puppetlabs_puppet | train |
f906c5b84ad5b7c8a062814310ad187a0f60bb84 | diff --git a/lib/object-sugar.js b/lib/object-sugar.js
index <HASH>..<HASH> 100644
--- a/lib/object-sugar.js
+++ b/lib/object-sugar.js
@@ -246,21 +246,27 @@ function operate(fn) {
var cb = args[cbIndex];
args[cbIndex] = function(err, data) {
- if(err || !model._mw) return cb(err, data);
+... | Sketch out middleware implementation further
Not problematic, though. Inner queries fail (they should trigger
middleware). Need to figure out how to achieve this without running into
a recursion trap again. Perhaps it is possible to skip executing
middleware for ~just~ queries within middleware code somehow.
Perhaps... | sugarjs_object-sugar | train |
e58fc6d119cbd216c17b9de8bec050e27a271dd9 | diff --git a/lib/feed2email/feed_analyzer.rb b/lib/feed2email/feed_analyzer.rb
index <HASH>..<HASH> 100644
--- a/lib/feed2email/feed_analyzer.rb
+++ b/lib/feed2email/feed_analyzer.rb
@@ -18,27 +18,9 @@ module Feed2Email
def type
return unless response
- case fetcher.content_type[/[^;]+/]
- when ... | Extract type detection into separate methods
POODR | agorf_feed2email | train |
5757330a3b8bf1ce044d5b20632a29e998c2e72f | diff --git a/h2o-mapreduce-generic/src/main/java/water/hadoop/h2odriver.java b/h2o-mapreduce-generic/src/main/java/water/hadoop/h2odriver.java
index <HASH>..<HASH> 100644
--- a/h2o-mapreduce-generic/src/main/java/water/hadoop/h2odriver.java
+++ b/h2o-mapreduce-generic/src/main/java/water/hadoop/h2odriver.java
@@ -132,6... | Expose jks_alias in Hadoop driver | h2oai_h2o-3 | train |
2edc06daefc2b4a2c714611d9f382d076c5c490e | diff --git a/molo/profiles/models.py b/molo/profiles/models.py
index <HASH>..<HASH> 100644
--- a/molo/profiles/models.py
+++ b/molo/profiles/models.py
@@ -2,6 +2,23 @@ from django.db import models
from django.db.models.signals import post_save
from django.dispatch import receiver
from django.contrib.auth.models impo... | added UserProfilesSettings and mobile number field | praekeltfoundation_molo.profiles | train |
216dc3f293a570a3ed5882014f28406a093e44e9 | diff --git a/lib/linker.js b/lib/linker.js
index <HASH>..<HASH> 100644
--- a/lib/linker.js
+++ b/lib/linker.js
@@ -93,32 +93,32 @@ class Linker {
return linked;
}
- static linkContracts(sources) {
- // Link contract names.
- var linked = _.cloneDeep(sources);
- linked[CONTRACTMAP... | Clean up Linker code a little. (Var rename, split up function.) | dapphub_dapple | train |
faf94de0f3197761c9af4ca6a8dc5af366b91784 | diff --git a/src/Input/Command.php b/src/Input/Command.php
index <HASH>..<HASH> 100644
--- a/src/Input/Command.php
+++ b/src/Input/Command.php
@@ -34,9 +34,12 @@ class Command extends Parser
/** @var string */
protected $_desc;
- /** @var string */
+ /** @var string Usage examples */
protected $_... | feat(command): support alias | adhocore_php-cli | train |
10a230446eb0353dc2dbf8c6632518a1742d2beb | diff --git a/cmd/mt-parrot/monitor.go b/cmd/mt-parrot/monitor.go
index <HASH>..<HASH> 100644
--- a/cmd/mt-parrot/monitor.go
+++ b/cmd/mt-parrot/monitor.go
@@ -131,7 +131,7 @@ func processPartitionSeries(s graphite.Series, now time.Time) bool {
metrics.numNans.Set(int(serStats.numNans))
lag := atomic.LoadInt64(&last... | don't round deltaSum down. we need to know every difference | grafana_metrictank | train |
5a833df635e4286fa44df139840607534b739c18 | diff --git a/lib/gir_ffi/sized_array.rb b/lib/gir_ffi/sized_array.rb
index <HASH>..<HASH> 100644
--- a/lib/gir_ffi/sized_array.rb
+++ b/lib/gir_ffi/sized_array.rb
@@ -82,6 +82,11 @@ module GirFFI
else
item
end
+ case element_type
+ when A... | Handle struct pointer elements in SizedArray#copy_from | mvz_gir_ffi | train |
ab9d5bdc9dd5b6dc82e53baf83bbe9ddb8e2f2c4 | diff --git a/watson_developer_cloud/speech_to_text_v1.py b/watson_developer_cloud/speech_to_text_v1.py
index <HASH>..<HASH> 100644
--- a/watson_developer_cloud/speech_to_text_v1.py
+++ b/watson_developer_cloud/speech_to_text_v1.py
@@ -162,7 +162,7 @@ class SpeechToTextV1(WatsonService):
def recognize(self,
... | chore(speech to text): Apply manual changes for recognize content type header | watson-developer-cloud_python-sdk | train |
9d1965f30696fcb60df57a784a964f879090917e | diff --git a/etc/eslint/rules/style.js b/etc/eslint/rules/style.js
index <HASH>..<HASH> 100644
--- a/etc/eslint/rules/style.js
+++ b/etc/eslint/rules/style.js
@@ -1811,6 +1811,25 @@ rules[ 'switch-colon-spacing' ] = [ 'error', {
}];
/**
+* Do not allow one or more spaces between template tags and their literals.
+*... | Add rule prohibiting spaces between a template tag and its literal | stdlib-js_stdlib | train |
aeefe3ab65a861f765f2686c3cb6e5eeea056f47 | diff --git a/nefertari/acl.py b/nefertari/acl.py
index <HASH>..<HASH> 100644
--- a/nefertari/acl.py
+++ b/nefertari/acl.py
@@ -1,6 +1,15 @@
from pyramid.security import ALL_PERMISSIONS, Allow, Everyone, Authenticated
+class CopyACLMixin(object):
+ """ ACL mixin that copies `self.__item_acl__` to
+ `self.__co... | Copy item acl to Model class of ACL factory | ramses-tech_nefertari | train |
977c393a9d11b26a3455ea33583bd880dcc7578d | diff --git a/lib/csv_record/version.rb b/lib/csv_record/version.rb
index <HASH>..<HASH> 100644
--- a/lib/csv_record/version.rb
+++ b/lib/csv_record/version.rb
@@ -1,3 +1,3 @@
module CsvRecord
- VERSION = '2.0.0'
+ VERSION = '2.1.0'
end | Poiting to <I> | lukelex_csv_record | train |
da34e7d7effddcddbc50c70ce9ab47134b3e8588 | diff --git a/src/main/java/com/buschmais/jqassistant/plugin/tycho/impl/scanner/TychoProjectScannerPlugin.java b/src/main/java/com/buschmais/jqassistant/plugin/tycho/impl/scanner/TychoProjectScannerPlugin.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/buschmais/jqassistant/plugin/tycho/impl/scanner/TychoProjec... | #<I> added labels and relations for maven projects | buschmais_jqa-tycho-plugin | train |
f1f51a28136dfcbc781fd896e473613d9bcd257b | diff --git a/safe/common/test/test_version.py b/safe/common/test/test_version.py
index <HASH>..<HASH> 100644
--- a/safe/common/test/test_version.py
+++ b/safe/common/test/test_version.py
@@ -80,14 +80,14 @@ class TestVersion(unittest.TestCase):
for line in fid.readlines():
if line.startswith('vers... | Fix failed install pypi package due to unable to get version. Fix #<I> | inasafe_inasafe | train |
b7fa79a29423df0251c53c061ecddd29a7a37b61 | diff --git a/quarkc/lib/quark_threaded_runtime.py b/quarkc/lib/quark_threaded_runtime.py
index <HASH>..<HASH> 100644
--- a/quarkc/lib/quark_threaded_runtime.py
+++ b/quarkc/lib/quark_threaded_runtime.py
@@ -146,13 +146,19 @@ class _QuarkWSAdapter(object):
self.ws = ws
def send(self, message):
- s... | python runtime, ignore WebSocket methods after closed callback | datawire_quark | train |
da40d51505948a6dc928293f9482c663f2fa79b4 | diff --git a/pyspider/fetcher/tornado_fetcher.py b/pyspider/fetcher/tornado_fetcher.py
index <HASH>..<HASH> 100644
--- a/pyspider/fetcher/tornado_fetcher.py
+++ b/pyspider/fetcher/tornado_fetcher.py
@@ -219,6 +219,8 @@ class Fetcher(object):
result['cookies'] = session.get_dict()
result['time'... | add test for dns error, fix bug no error when fetch with async client | binux_pyspider | train |
faf4e1c777f0c306e1632c8efda49f81f8de7646 | diff --git a/xds/xds.go b/xds/xds.go
index <HASH>..<HASH> 100644
--- a/xds/xds.go
+++ b/xds/xds.go
@@ -30,7 +30,7 @@ package xds
import (
"fmt"
- v3statuspb "github.com/envoyproxy/go-control-plane/envoy/service/status/v3"
+ v3statusgrpc "github.com/envoyproxy/go-control-plane/envoy/service/status/v3"
"google.gol... | xds: rename proto import to grpc (#<I>) | grpc_grpc-go | train |
a15a13a326409083b67750612f42dc26e277f807 | diff --git a/thumbor/engines/pil.py b/thumbor/engines/pil.py
index <HASH>..<HASH> 100644
--- a/thumbor/engines/pil.py
+++ b/thumbor/engines/pil.py
@@ -116,7 +116,7 @@ class Engine(BaseEngine):
if self.image.mode != 'RGB':
self.image = self.image.convert('RGB')
else:
- ... | Changin the way image format is being checked so that it doesnt conflict with MPO format for JPG files | thumbor_thumbor | train |
f19fe86448419a5af0a1f602b00f1b3390a6e960 | diff --git a/lib/lanes/api/test_specs.rb b/lib/lanes/api/test_specs.rb
index <HASH>..<HASH> 100644
--- a/lib/lanes/api/test_specs.rb
+++ b/lib/lanes/api/test_specs.rb
@@ -1,4 +1,5 @@
require 'jasmine-core'
+require 'lanes/command'
module Lanes
module API
@@ -6,8 +7,9 @@ module Lanes
class TestSpecs
... | Use command code to load current ext | argosity_hippo | train |
a44b136efdd42b78fd3831032705cefe08ea9ae3 | diff --git a/ommprotocol/core.py b/ommprotocol/core.py
index <HASH>..<HASH> 100644
--- a/ommprotocol/core.py
+++ b/ommprotocol/core.py
@@ -65,7 +65,8 @@ class Stage(object):
trajectory=None, trajectory_every=10000, output='.', verbose=True,
restart=None, restart_every=1000000, report... | Return pos, vel, box and savestate after MD | insilichem_ommprotocol | train |
c5529d11e4aaabb076f6292fd14ac04d099ec6e5 | diff --git a/lib/scoped_search/query_builder.rb b/lib/scoped_search/query_builder.rb
index <HASH>..<HASH> 100644
--- a/lib/scoped_search/query_builder.rb
+++ b/lib/scoped_search/query_builder.rb
@@ -484,7 +484,11 @@ module ScopedSearch
raise ScopedSearch::QueryNotSupported, "Field '#{lhs.value}' not recogniz... | Fix validations on :in operator | wvanbergen_scoped_search | train |
a993dbbb18baaa42a399cf724a969c75e77302ce | diff --git a/lib/dpl/provider/code_deploy.rb b/lib/dpl/provider/code_deploy.rb
index <HASH>..<HASH> 100644
--- a/lib/dpl/provider/code_deploy.rb
+++ b/lib/dpl/provider/code_deploy.rb
@@ -110,7 +110,7 @@ module DPL
end
def check_auth
- log "Logging in with Access Key: #{option(:access_key_id)[-4..... | Side step `option` call in S3 and Code Deploy
Resolves <URL>` does not go through the same
checkdown list when it tries to determine AWS credentials.
Here, we normalize this process with `#access_key_id` method. | travis-ci_dpl | train |
6c749611fa55240915f17ef0f5839fc051d38360 | diff --git a/samples/subscriptions.js b/samples/subscriptions.js
index <HASH>..<HASH> 100755
--- a/samples/subscriptions.js
+++ b/samples/subscriptions.js
@@ -340,94 +340,85 @@ function synchronousPull(projectName, subscriptionName) {
);
// The maximum number of messages returned for this request.
// Pub/Sub m... | Add Pub/Sub ack deadline example (#<I>)
Add Pub/Sub ack deadline example with 1 worker. | googleapis_nodejs-pubsub | train |
5a72f505aa4707335c985c8d85b7f31f5f86c7e1 | diff --git a/Eloquent/Factories/Factory.php b/Eloquent/Factories/Factory.php
index <HASH>..<HASH> 100644
--- a/Eloquent/Factories/Factory.php
+++ b/Eloquent/Factories/Factory.php
@@ -241,6 +241,20 @@ abstract class Factory
}
/**
+ * Create a callback that persists a model in the database when invoked.
+... | [8.x] Add lazy method in eloquent factory (#<I>)
* Add lazy method in eloquent factory
* Update Factory.php | illuminate_database | train |
e88c0a92e75ca2425c978875818c011577841fce | diff --git a/lib/solr_wrapper/instance.rb b/lib/solr_wrapper/instance.rb
index <HASH>..<HASH> 100644
--- a/lib/solr_wrapper/instance.rb
+++ b/lib/solr_wrapper/instance.rb
@@ -1,7 +1,7 @@
require 'digest'
require 'fileutils'
require 'open-uri'
-require 'progressbar'
+require 'ruby-progressbar'
require 'securerandom'... | Replace progress bar with ruby-progressbar | cbeer_solr_wrapper | train |
8cf82b7a111094325ca1a599a8bbd711cd687c4c | diff --git a/src/Symfony/Component/Console/Tests/Formatter/OutputFormatterTest.php b/src/Symfony/Component/Console/Tests/Formatter/OutputFormatterTest.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/Console/Tests/Formatter/OutputFormatterTest.php
+++ b/src/Symfony/Component/Console/Tests/Formatter/OutputFor... | [Console] Added '<' escaping tests. | symfony_symfony | train |
35263bc048ee2635aed92264058b46f454536da4 | diff --git a/lib/functions/url.js b/lib/functions/url.js
index <HASH>..<HASH> 100644
--- a/lib/functions/url.js
+++ b/lib/functions/url.js
@@ -10,6 +10,7 @@
*/
var Compiler = require('../visitor/compiler')
+ , events = require('../renderer').events
, nodes = require('../nodes')
, parse = require('url').pars... | expose events outside the renderer to allow external programs to listen #<I> | stylus_stylus | train |
75ff370beb04467246b78c58da17161150c2f91a | diff --git a/tests/unit/Rs/Json/Patch/DocumentTest.php b/tests/unit/Rs/Json/Patch/DocumentTest.php
index <HASH>..<HASH> 100755
--- a/tests/unit/Rs/Json/Patch/DocumentTest.php
+++ b/tests/unit/Rs/Json/Patch/DocumentTest.php
@@ -197,6 +197,42 @@ class DocumentTest extends \PHPUnit_Framework_TestCase
/**
* @t... | Improvement, ensure per default all patch operations are allowed | raphaelstolt_php-jsonpatch | train |
1129722f0c218a14e606647e5b3a4e5e091443a2 | diff --git a/myql-cli.py b/myql-cli.py
index <HASH>..<HASH> 100755
--- a/myql-cli.py
+++ b/myql-cli.py
@@ -68,16 +68,18 @@ class ExecuteAction(argparse.Action):
yql = MYQL(**attr)
yql.diagnostics = namespace.diagnostics if namespace.diagnostics else config.getboolean(format, 'diagnostics')
- ... | #<I>: multiple query improved | josuebrunel_myql-cli | train |
7ac298e3f3f0574f555b8672f67a056e6fe82ec3 | diff --git a/src/Repo/IModule.php b/src/Repo/IModule.php
index <HASH>..<HASH> 100644
--- a/src/Repo/IModule.php
+++ b/src/Repo/IModule.php
@@ -5,12 +5,10 @@
namespace Praxigento\Accounting\Repo;
-interface IModule
+use Praxigento\Core\ICached;
+
+interface IModule extends ICached
{
- /**
- * Reset cached d... | MOBI-<I> - Unit tests and code coverage after grids (ICached interface remastering) | praxigento_mobi_mod_accounting | train |
99b06f8bce894796b27045c4aea626c62290d78d | diff --git a/msgpong_test.go b/msgpong_test.go
index <HASH>..<HASH> 100644
--- a/msgpong_test.go
+++ b/msgpong_test.go
@@ -99,7 +99,7 @@ func TestPongBIP0031(t *testing.T) {
readmsg := btcwire.NewMsgPong(0)
err = readmsg.BtcDecode(&buf, pver)
if err == nil {
- t.Errorf("decode of MsgPong succeeded when it should... | Add format specifier in pong test error output.
The error message did not have a format specifier even though it was
passing an argument to show. Found by go vet. | btcsuite_btcd | train |
4a609a4c4b71c71aa4265f540064cc9eb3b38ac6 | diff --git a/lib/cudd-rb/interfaces/bdd.rb b/lib/cudd-rb/interfaces/bdd.rb
index <HASH>..<HASH> 100644
--- a/lib/cudd-rb/interfaces/bdd.rb
+++ b/lib/cudd-rb/interfaces/bdd.rb
@@ -21,35 +21,35 @@ module Cudd
# @param [Integer] i a variable index
# @see Cudd_bddIthVar
def ith_var(i)
- _bdd(Wra... | Code style and not need to deref. | blambeau_cudd-rb | train |
827fa622699b87dfc596a7fca679fada1f71f8c5 | diff --git a/src/Rocketeer/Services/Config/Files/Loaders/CachedConfigurationLoader.php b/src/Rocketeer/Services/Config/Files/Loaders/CachedConfigurationLoader.php
index <HASH>..<HASH> 100644
--- a/src/Rocketeer/Services/Config/Files/Loaders/CachedConfigurationLoader.php
+++ b/src/Rocketeer/Services/Config/Files/Loaders... | Cache is now made on files not folders | rocketeers_rocketeer | train |
da0906b6d8de22a4b88dcdc713912f016e39f7a9 | diff --git a/packages/core/src/components/notebook-menu/constants.js b/packages/core/src/components/notebook-menu/constants.js
index <HASH>..<HASH> 100644
--- a/packages/core/src/components/notebook-menu/constants.js
+++ b/packages/core/src/components/notebook-menu/constants.js
@@ -9,6 +9,7 @@ export const MENU_ITEM_AC... | put unhide and clear all outputs in notebook-menu | nteract_nteract | train |
af5b24bda6684388709e2aa45395311600778dd4 | diff --git a/src/Property/WalkProperty.php b/src/Property/WalkProperty.php
index <HASH>..<HASH> 100644
--- a/src/Property/WalkProperty.php
+++ b/src/Property/WalkProperty.php
@@ -28,7 +28,7 @@ class WalkProperty extends BaseAlgorithm
*/
public function isCycle()
{
- $vertices = $this->walk->getVe... | Fix WalkProperty::hasCycle() by checking correct array of vertices | graphp_algorithms | train |
ffaee3a90ca25be0ee838688b94236c77874da92 | diff --git a/charmhelpers/contrib/openstack/context.py b/charmhelpers/contrib/openstack/context.py
index <HASH>..<HASH> 100644
--- a/charmhelpers/contrib/openstack/context.py
+++ b/charmhelpers/contrib/openstack/context.py
@@ -98,7 +98,6 @@ from charmhelpers.contrib.network.ip import (
from charmhelpers.contrib.openst... | Use pymysql driver for mysql sqlalchemy dialect (#<I>)
The sqlalchemy package has switched back to using mysqldb as the
default driver for the mysql dialect in Ubuntu Disco (Stein).
Ensure the default driver in SharedDBContext is overridden with
pymysql to maintain the same behavior. | juju_charm-helpers | train |
fc12a071a86d579c7aaa6bf4316afd0f3a07c131 | diff --git a/sslyze/plugins/openssl_cipher_suites_plugin.py b/sslyze/plugins/openssl_cipher_suites_plugin.py
index <HASH>..<HASH> 100644
--- a/sslyze/plugins/openssl_cipher_suites_plugin.py
+++ b/sslyze/plugins/openssl_cipher_suites_plugin.py
@@ -445,6 +445,10 @@ TLS_OPENSSL_TO_RFC_NAMES_MAPPING = {
"PSK-3DES-EDE-... | Add cipher suites to the OpenSSL -> RFC name map | nabla-c0d3_sslyze | train |
c4428db8a5301e56c45ad2984fb5a376193c748f | diff --git a/src/viewer.js b/src/viewer.js
index <HASH>..<HASH> 100644
--- a/src/viewer.js
+++ b/src/viewer.js
@@ -127,7 +127,10 @@ $.Viewer = function( options ) {
canvas: null,
// Overlays list. An overlay allows to add html on top of the viewer.
- overlays: [],
+ // Co... | Fix crash when closing the viewer when no overlay has been added. | openseadragon_openseadragon | train |
78a55a7bf6135cad30fa98cd1f2f3f1f50dbbac5 | diff --git a/core/src/main/java/com/orientechnologies/orient/core/sql/functions/graph/OSQLFunctionShortestPath.java b/core/src/main/java/com/orientechnologies/orient/core/sql/functions/graph/OSQLFunctionShortestPath.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/orientechnologies/orient/core/sql/function... | Fixed issue <I>: Implemented the shortest path algorithm | orientechnologies_orientdb | train |
e37c5ed7c96e0f7e533cbec6b3529d6667eff3c7 | diff --git a/src/Models/Transaction.php b/src/Models/Transaction.php
index <HASH>..<HASH> 100644
--- a/src/Models/Transaction.php
+++ b/src/Models/Transaction.php
@@ -292,7 +292,7 @@ class Transaction
: self::VERSION_2;
// validate version field, should... | make sure version and type field can be extended through sub classes | evias_nem-php | train |
750171ad9dec822def38efac666b655adb1bfd86 | diff --git a/src/main/java/com/couchbase/client/CouchbaseClient.java b/src/main/java/com/couchbase/client/CouchbaseClient.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/couchbase/client/CouchbaseClient.java
+++ b/src/main/java/com/couchbase/client/CouchbaseClient.java
@@ -249,6 +249,8 @@ public class Couchbas... | JCBC-<I>: Adding INFO-level config output on init.
This changeset prints info-level output on initialization, making
it easier to report and debug issues when they show up in logs.
Change-Id: I<I>cb<I>cded7ef<I>cf<I>c1eeab<I>d3c<I>
Reviewed-on: <URL> | couchbase_couchbase-java-client | train |
2cdc6dc224a46d9088022cb422c09f62e3bf8f1f | diff --git a/src/View/Helper/MenuHelper.php b/src/View/Helper/MenuHelper.php
index <HASH>..<HASH> 100644
--- a/src/View/Helper/MenuHelper.php
+++ b/src/View/Helper/MenuHelper.php
@@ -3,7 +3,7 @@ namespace CkTools\View\Helper;
use Cake\Core\Configure;
use Cake\Routing\Router;
-use Cake\Utility\String;
+use Cake\Util... | change deprecated CakePHP String class to Text Class in MenuHelper | scherersoftware_cake-cktools | train |
57cff258d827122f0d14d0b0a4f450c0bb00bbf5 | diff --git a/api/opentrons/containers/placeable.py b/api/opentrons/containers/placeable.py
index <HASH>..<HASH> 100644
--- a/api/opentrons/containers/placeable.py
+++ b/api/opentrons/containers/placeable.py
@@ -3,7 +3,6 @@ import math
import numbers
from collections import OrderedDict
from opentrons.util.vector impo... | better organization and removed some changes that I must've missed in rebase | Opentrons_opentrons | train |
a5068b3beb83d8ef139a8bdf1126824502b4122f | diff --git a/erizo_controller/erizoClient/src/webrtc-stacks/ChromeStableStack.js b/erizo_controller/erizoClient/src/webrtc-stacks/ChromeStableStack.js
index <HASH>..<HASH> 100644
--- a/erizo_controller/erizoClient/src/webrtc-stacks/ChromeStableStack.js
+++ b/erizo_controller/erizoClient/src/webrtc-stacks/ChromeStableSt... | Fixed Signalling/Candidate exchange
*Candidates gathered before answer were not reported properly
*Max Bandwith was not set properly | lynckia_licode | train |
934a69fdc72807e638ce35bc301840673344bfea | diff --git a/IronWorker.class.php b/IronWorker.class.php
index <HASH>..<HASH> 100644
--- a/IronWorker.class.php
+++ b/IronWorker.class.php
@@ -253,7 +253,6 @@ class IronWorker{
$this->addHeaderToArchive($zipFilename, $filename);
$this->setPostHeaders();
- $this->headers['Content-Length'] = fi... | Upload code: replaced file_get_contents with curl. | iron-io_iron_worker_php | train |
d59c0bc8a4e05aa5a4ec2fed87250f5e3c6c7a8f | diff --git a/Command/GenerateEntitiesCommand.php b/Command/GenerateEntitiesCommand.php
index <HASH>..<HASH> 100644
--- a/Command/GenerateEntitiesCommand.php
+++ b/Command/GenerateEntitiesCommand.php
@@ -53,7 +53,10 @@ class GenerateEntitiesCommand extends ContainerAwareCommand
$map = array();
$interfa... | adds src bundle(s) interfaces and traits to entity generation | BlackBoxRepo_PandoBaseBundle | train |
e9a5e6bb19ef34dca68395202ac90cd8629308cd | diff --git a/jbpm-designer-backend/src/main/java/org/jbpm/designer/repository/vfs/VFSRepository.java b/jbpm-designer-backend/src/main/java/org/jbpm/designer/repository/vfs/VFSRepository.java
index <HASH>..<HASH> 100644
--- a/jbpm-designer-backend/src/main/java/org/jbpm/designer/repository/vfs/VFSRepository.java
+++ b/j... | BZ - <I> : When creating process with existing name the old process is silently overwritten | kiegroup_jbpm-designer | train |
73d536fa6bdf943ee8799f0b9918e19afe51456a | diff --git a/History.txt b/History.txt
index <HASH>..<HASH> 100644
--- a/History.txt
+++ b/History.txt
@@ -11,6 +11,7 @@ development environment.
* Make rerun and --drb work together again after formatter API changes (#485 Erik Hansson, John Ferlito)
=== New Features
+* The Rails cucumber generator will only defaul... | The Rails cucumber generator will only default to RSpec if installed. And print better help. Also make all text alerts more cuky. And upgrade term-ansicolor. | cucumber_cucumber-ruby | train |
ba63a096cfeb65f0fb1a68ddd981cf99ba1700ee | diff --git a/modules/core/src/controllers/orbit-controller.js b/modules/core/src/controllers/orbit-controller.js
index <HASH>..<HASH> 100644
--- a/modules/core/src/controllers/orbit-controller.js
+++ b/modules/core/src/controllers/orbit-controller.js
@@ -8,7 +8,6 @@ import {mod} from '../utils/math-utils';
const MOVEM... | Fix: OrbitView's orbitAxis prop is not used by OrbitController (#<I>) | uber_deck.gl | train |
a26e4d5da7d34a777b83ea1f14a805c743cf6d44 | diff --git a/src/Form/Field/Tags.php b/src/Form/Field/Tags.php
index <HASH>..<HASH> 100644
--- a/src/Form/Field/Tags.php
+++ b/src/Form/Field/Tags.php
@@ -24,7 +24,7 @@ class Tags extends Field
$this->value = explode(',', $this->value);
}
- $this->value = array_filter($this->value);
+ ... | fix `array_filter()` issue. | ShaoZeMing_laravel-merchant | train |
7dc6c2fc6301dd10ae1ceab56d50c2adfd98f375 | diff --git a/lib/graphite.js b/lib/graphite.js
index <HASH>..<HASH> 100644
--- a/lib/graphite.js
+++ b/lib/graphite.js
@@ -16,7 +16,7 @@ function Graphite(host, port, namespace, collector, config) {
this.config = config;
}
-Graphite.prototype.sendPageData = function(aggregates, pages, cb) {
+Graphite.prototype.se... | add domain to summary fields sent to Graphite | sitespeedio_sitespeed.io | train |
f460025fb000bdbf33e8b6c1fb42188daa97e066 | diff --git a/src/Client.php b/src/Client.php
index <HASH>..<HASH> 100644
--- a/src/Client.php
+++ b/src/Client.php
@@ -872,7 +872,7 @@ class Client extends AbstractClient {
$entity->appendChild( $queryXML->createElement( 'all-attributes' ) );
$order = $entity->appendChild( $queryXML->createElement( ... | Don't provide a caching facility to the MetadataCollection | AlexaCRM_php-crm-toolkit | train |
eeeeab2a04355f6ac744970c5958960d934f5a7f | diff --git a/salt/utils/__init__.py b/salt/utils/__init__.py
index <HASH>..<HASH> 100644
--- a/salt/utils/__init__.py
+++ b/salt/utils/__init__.py
@@ -2,6 +2,7 @@
Some of the utils used by salt
'''
+from calendar import month_abbr as months
import os
import sys
import logging
@@ -30,18 +31,6 @@ DEFAULT_COLOR = '... | use calendar module for loading abbreviations from locale | saltstack_salt | train |
9ba41ec8dc5d611437f21e0c5073a71617d8f5f5 | diff --git a/lib/pagify/pager/data_mapper.rb b/lib/pagify/pager/data_mapper.rb
index <HASH>..<HASH> 100644
--- a/lib/pagify/pager/data_mapper.rb
+++ b/lib/pagify/pager/data_mapper.rb
@@ -9,7 +9,6 @@ module Pagify
def initialize model_class, opts = {}, query = {}
@model = model_class
- query ||= {}
... | [pager/data_mapper.rb] model.query could not be nil anymore | godfat_pagify | train |
ee55289a53fe673ab41768a5e5da46d150a985d9 | diff --git a/src/main/java/org/rnorth/visibleassertions/VisibleAssertions.java b/src/main/java/org/rnorth/visibleassertions/VisibleAssertions.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/rnorth/visibleassertions/VisibleAssertions.java
+++ b/src/main/java/org/rnorth/visibleassertions/VisibleAssertions.java
@... | Ensure that assertThrows also logs in success case | rnorth_visible-assertions | train |
fb705f67312640101e238aa9d91fd17be4a1999f | diff --git a/clients/web/test/spec/swaggerSpec.js b/clients/web/test/spec/swaggerSpec.js
index <HASH>..<HASH> 100644
--- a/clients/web/test/spec/swaggerSpec.js
+++ b/clients/web/test/spec/swaggerSpec.js
@@ -6,10 +6,12 @@ describe('Test the swagger pages', function () {
runs(function () {
expect($(... | Improve the wait condition for the swagger test.
Instead of waiting an arbitrary time, wait until the condition we need is satisfied.
There have been some intermittent failures of the swagger test on CI. This may fix them if they are time dependent. | girder_girder | train |
8a3b888370fcf8b4656f2c40ce3894eaa8e675e9 | diff --git a/lib/spree/adyen/payment.rb b/lib/spree/adyen/payment.rb
index <HASH>..<HASH> 100644
--- a/lib/spree/adyen/payment.rb
+++ b/lib/spree/adyen/payment.rb
@@ -5,10 +5,10 @@
module Spree::Adyen::Payment
# adyen_hpp_capture! :: bool | error
def adyen_hpp_capture!
- started_processing!
- # success sta... | API failures don't fail the payment
Because an api failure only means that adyen couldn't accept the
request, a failure should not mean that the payment failed - counter to
that actually it means that the operation should be reattempted. | StemboltHQ_solidus-adyen | train |
97f708097bdfe508e2e210daadff84e1370246ea | diff --git a/app/Http/Request.php b/app/Http/Request.php
index <HASH>..<HASH> 100644
--- a/app/Http/Request.php
+++ b/app/Http/Request.php
@@ -293,9 +293,9 @@ class Request extends SymfonyRequest implements ServerRequestInterface
public function getUploadedFiles(): array
{
$files = [];
- forea... | Fix: symfony request wrapper doesn't upload files | fisharebest_webtrees | train |
66f8aa78997a713b50dd85ab2725046af6f0f5ca | diff --git a/src/Command/Db/DbSizeCommand.php b/src/Command/Db/DbSizeCommand.php
index <HASH>..<HASH> 100644
--- a/src/Command/Db/DbSizeCommand.php
+++ b/src/Command/Db/DbSizeCommand.php
@@ -244,14 +244,14 @@ class DbSizeCommand extends CommandBase
private function formatPercentage($percentage) {
if... | rounding up forcing because php is weird | platformsh_platformsh-cli | train |
7e658f647a233c17bf978ab997988ba7ba321a02 | diff --git a/build_package.py b/build_package.py
index <HASH>..<HASH> 100755
--- a/build_package.py
+++ b/build_package.py
@@ -14,6 +14,8 @@ import sys
__metaclass__ = type
+DEBS_NOT_FOUND = 3
+
# This constant defines the location of the base source package branch.
DEFAULT_SPB = 'lp:~juju-qa/juju-release-tools/... | Return DEBS_NOT_FOUND when debs are not moved to the build dir. | juju_juju | train |
d69e48978e4b348df4009c44a247398a76493826 | diff --git a/core/src/main/java/com/bazaarvoice/soa/ServicePoolStatistics.java b/core/src/main/java/com/bazaarvoice/soa/ServicePoolStatistics.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/bazaarvoice/soa/ServicePoolStatistics.java
+++ b/core/src/main/java/com/bazaarvoice/soa/ServicePoolStatistics.java
@... | Cleaned up imports, removed unnecessary comments | bazaarvoice_ostrich | train |
ea4dc76f925647798065620eebd7b2f671c97941 | diff --git a/servo-core/src/main/java/com/netflix/servo/publish/FileMetricObserver.java b/servo-core/src/main/java/com/netflix/servo/publish/FileMetricObserver.java
index <HASH>..<HASH> 100644
--- a/servo-core/src/main/java/com/netflix/servo/publish/FileMetricObserver.java
+++ b/servo-core/src/main/java/com/netflix/ser... | Use a clock instance for fileMetrics as well | Netflix_servo | train |
d102791df7c38e7726eb32e70e2f25af97a3ca2a | diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/fixtures.rb
+++ b/activerecord/lib/active_record/fixtures.rb
@@ -822,6 +822,7 @@ module ActiveRecord
end
@fixture_cache = {}
+ @fixtu... | ensure @fixture_connections is initialized in case an exception happens during setup | rails_rails | train |
d961233facf776e3bbfaad8165c67b83953c48e6 | diff --git a/dns/google/cloud/dns/__init__.py b/dns/google/cloud/dns/__init__.py
index <HASH>..<HASH> 100644
--- a/dns/google/cloud/dns/__init__.py
+++ b/dns/google/cloud/dns/__init__.py
@@ -32,4 +32,4 @@ from google.cloud.dns.zone import ManagedZone
from google.cloud.dns.resource_record_set import ResourceRecordSet
... | Changing DNS Connection to only accept client. | googleapis_google-cloud-python | train |
b37658c8a2b580b5f0ebcb937da12e0e299e47d7 | diff --git a/influxdb_metrics/utils.py b/influxdb_metrics/utils.py
index <HASH>..<HASH> 100644
--- a/influxdb_metrics/utils.py
+++ b/influxdb_metrics/utils.py
@@ -61,6 +61,6 @@ def process_points(client, data): # pragma: no cover
client.write_points(data)
except Exception as err:
if getattr(sett... | use logger.exception instead of logger.error
The log lever will still be ERROR, but using this method will include information from the current excpetion including stack trace | bitlabstudio_django-influxdb-metrics | train |
b80b88c990d6c261b165efc18033ee1b403cb780 | diff --git a/config/routes.rb b/config/routes.rb
index <HASH>..<HASH> 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -54,14 +54,14 @@ Socializer::Engine.routes.draw do
resources :notifications, only: [:index, :show]
resources :people, only: [:index, :show, :edit, :update] do
- resources :... | nest the people routes and simplify the names | socializer_socializer | train |
b93a13bd0182fe2231a888d2ee3f959f97d70a3e | diff --git a/pac4j-oidc/src/main/java/org/pac4j/oidc/client/OidcClient.java b/pac4j-oidc/src/main/java/org/pac4j/oidc/client/OidcClient.java
index <HASH>..<HASH> 100644
--- a/pac4j-oidc/src/main/java/org/pac4j/oidc/client/OidcClient.java
+++ b/pac4j-oidc/src/main/java/org/pac4j/oidc/client/OidcClient.java
@@ -255,7 +25... | #<I>: fix sso failure
refactor OidcCredentials to include client name in the constructor | pac4j_pac4j | train |
ab4752a4905ef8577a1367e50048dd8a664df250 | diff --git a/lib/configLoader.js b/lib/configLoader.js
index <HASH>..<HASH> 100644
--- a/lib/configLoader.js
+++ b/lib/configLoader.js
@@ -40,7 +40,7 @@ function Loader(options) {
vm.runInContext(script, context, file);
var config = vm.runInContext('module.exports;', context, file);
- cb(null, _.me... | Load configs in the right order. | nearform_nscale-kernel | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.