hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
22daa25b7ffa35aec40c6727cec888298efda35d | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
/.bundle/
/spec/examples.txt
+/notes.txt
diff --git a/lib/bernard.rb b/lib/bernard.rb
index <HASH>..<HASH> 100644
--- a/lib/bernard.rb
+++ b/lib/bernard.rb
@@ -50,10 +50,10 @@ class Bernard
end
d... | (chore) Change tick and gauge events | dxw_bernard | train |
276721654a03c270369719a251702aadcf985caa | diff --git a/internal/goofys.go b/internal/goofys.go
index <HASH>..<HASH> 100644
--- a/internal/goofys.go
+++ b/internal/goofys.go
@@ -1104,7 +1104,7 @@ func (fs *Goofys) Rename(
// flushed it yet, pretend that's ok because
// when we flush we will handle the rename
inode := parent.findChildUnlocked(op.OldN... | workaround minio incompatibility
Another minio incompatibility: if object/ exists and no object/* exists,
ListObjects delimiter=/ prefix=object/ returns nothing, when we expect
it to return object/ itself. This leads us to try to rename object
instead of object/, and eventually panic because of other internal
confusio... | kahing_goofys | train |
c3fa9cec06b93975ee9d847a2a5a785a5b32b228 | diff --git a/peppy/project.py b/peppy/project.py
index <HASH>..<HASH> 100644
--- a/peppy/project.py
+++ b/peppy/project.py
@@ -509,7 +509,7 @@ class Project(AttributeDict):
:param str subproject: A string with a subproject name to be activated
:return Project: A Project with the selected subproject ac... | upon subproject activation, reset project | pepkit_peppy | train |
d1cdee210e66516ab16c2cd50b1007a2e079742f | diff --git a/synapse/lib/certdir.py b/synapse/lib/certdir.py
index <HASH>..<HASH> 100644
--- a/synapse/lib/certdir.py
+++ b/synapse/lib/certdir.py
@@ -348,3 +348,7 @@ class CertDir:
def isHostCert(self, name):
crtpath = self.getPathJoin('hosts', '%s.crt' % name)
return os.path.isfile(crtpath)
+
+... | added unit test to ensure P<I> file creation | vertexproject_synapse | train |
28ff4088abbfcec203ac6114790814d0934f0039 | diff --git a/src/page.php b/src/page.php
index <HASH>..<HASH> 100644
--- a/src/page.php
+++ b/src/page.php
@@ -108,7 +108,6 @@ class Page {
* @return string URL of page we're currently on.
*/
public function url( bool $query_string = false ): string {
- $query_string = ( bool ) $query_string;
... | undo casting to bool since it's type-hinted as bool already | GrottoPress_wordpress-page | train |
eb4eccbe94b73b099128c5cef80b122f51e547b5 | diff --git a/datastore.go b/datastore.go
index <HASH>..<HASH> 100644
--- a/datastore.go
+++ b/datastore.go
@@ -116,7 +116,7 @@ func GetMulti(c appengine.Context,
return groupedErrs
}
-type cacheContext struct {
+type context struct {
appengine.Context
// RWMutex is used to protect cache during concurrent acc... | Changed name of cacheContext to context. | qedus_nds | train |
4b742abf80f444cdc36ea27416d3b6916078682e | diff --git a/server-coreless/src/main/java/org/openqa/selenium/server/SeleniumServer.java b/server-coreless/src/main/java/org/openqa/selenium/server/SeleniumServer.java
index <HASH>..<HASH> 100644
--- a/server-coreless/src/main/java/org/openqa/selenium/server/SeleniumServer.java
+++ b/server-coreless/src/main/java/org/... | Log the version number and revision number
r<I> | SeleniumHQ_selenium | train |
e277e6ed2120e9930193582307b8296ed37bd663 | diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js
index <HASH>..<HASH> 100644
--- a/test/unit/manipulation.js
+++ b/test/unit/manipulation.js
@@ -616,7 +616,7 @@ test("val()", function() {
});
var testVal = function(valueObj) {
- expect(5);
+ expect(6);
jQuery("#text1").val(valueObj( 'test' ));... | Adding a test that a new option can be selected with val(N) | jquery_jquery | train |
879f43e7d54278263ef79fbd3153ec4f110e81b3 | diff --git a/build.rb b/build.rb
index <HASH>..<HASH> 100755
--- a/build.rb
+++ b/build.rb
@@ -91,7 +91,7 @@ system("chmod a+x ./gradlew ")
if params["platform"] == "java"
system("./gradlew #{params[:d_options].join(" ")} clean check integrationTest")
elsif params["platform"] == "android"
- system("./gradlew -b And... | Update build.rb to use new test targets
Update build.rb to use the new test targets for android | cloudant_sync-android | train |
6a300669090b269ec58bfebde8ab29d0375bb230 | diff --git a/src/components/VSelect/VSelect.js b/src/components/VSelect/VSelect.js
index <HASH>..<HASH> 100644
--- a/src/components/VSelect/VSelect.js
+++ b/src/components/VSelect/VSelect.js
@@ -158,16 +158,13 @@ export default {
return this.multiple
},
menuProps () {
- const nudgeMenu = !this.isS... | refactor(v-select): change offsetY behavior
removed automatic offsetY from solo/box | vuetifyjs_vuetify | train |
8bcc01b41eb131f77e20bdf302b3bde27b5fa48d | diff --git a/OpenPNM/GEN/__CustomGenerator__.py b/OpenPNM/GEN/__CustomGenerator__.py
index <HASH>..<HASH> 100644
--- a/OpenPNM/GEN/__CustomGenerator__.py
+++ b/OpenPNM/GEN/__CustomGenerator__.py
@@ -58,7 +58,11 @@ class Custom(GenericGenerator):
self._net_img = image_shape
self._Lc = lattice... | Enabled 2D images as input in CustomGenerator
Former-commit-id: fb2b<I>c<I>e0a3ea6f<I>bf<I>dfc2ae6
Former-commit-id: 2a<I>dbecd<I>c8e6df7c3e<I>ff<I>a<I>b7b3c | PMEAL_OpenPNM | train |
c34de3e2ad5d08ca28fd2f51aa5ff9b1f2e782ac | diff --git a/front-end/src/uibuilderfe.js b/front-end/src/uibuilderfe.js
index <HASH>..<HASH> 100644
--- a/front-end/src/uibuilderfe.js
+++ b/front-end/src/uibuilderfe.js
@@ -231,7 +231,7 @@ if (typeof require !== 'undefined' && typeof io === 'undefined') {
self.set = function (prop, val) {
self... | Code tidy (deepscan recommendations) | TotallyInformation_node-red-contrib-uibuilder | train |
3948ad9c1d1fc2290f32be0b3a6c2512e8b8a0c6 | diff --git a/lib/Http.js b/lib/Http.js
index <HASH>..<HASH> 100644
--- a/lib/Http.js
+++ b/lib/Http.js
@@ -38,6 +38,10 @@ class Http extends SandGrain {
// Create Koa App
this.app = express();
+ if ('function' == typeof this.config.beforeAllMiddleware) {
+ this.config.beforeAllMiddleware(this.app);
... | added beforeAllMiddleware, beforeRouterMiddleware, deprecated beforeMiddleware | SandJS_http | train |
346296becaecb075c0ffbda95465cea8f12e6c91 | diff --git a/tests/TestCase/I18n/Formatter/IcuFormatterTest.php b/tests/TestCase/I18n/Formatter/IcuFormatterTest.php
index <HASH>..<HASH> 100644
--- a/tests/TestCase/I18n/Formatter/IcuFormatterTest.php
+++ b/tests/TestCase/I18n/Formatter/IcuFormatterTest.php
@@ -95,7 +95,8 @@ class IcuFormatterTest extends TestCase
... | Skipping a test in HHVM as SSL is not implemented for sockets
Weakening one of the assertions as HHVM does not return the same exception
for badly constructed translation messages | cakephp_cakephp | train |
1ae8ceeda1d7740955a2fe9dd873be57b39fc4d3 | diff --git a/src/Malenki/Bah/H.php b/src/Malenki/Bah/H.php
index <HASH>..<HASH> 100644
--- a/src/Malenki/Bah/H.php
+++ b/src/Malenki/Bah/H.php
@@ -78,6 +78,17 @@ class H implements \Iterator, \Countable
public function __construct($arr = array())
{
+ if(!is_array($arr))
+ {
+ if($ar... | A and H claases: new tests while instanciating | malenkiki_bah | train |
0f6319b88a34948375921606fa3c2584f1955191 | diff --git a/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryClient.java b/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryClient.java
index <HASH>..<HASH> 100644
--- a/spring-cloud-consul-discovery/src/main/java... | Don't require ServerProperties for ConsulDiscoveryClient.
for apps not registering with consul (cli apps).
Fixes gh-<I> | spring-cloud_spring-cloud-consul | train |
994303ea1fdda2d82b06feb61e033f3f105a28ed | diff --git a/Lib/fontmake/font_project.py b/Lib/fontmake/font_project.py
index <HASH>..<HASH> 100644
--- a/Lib/fontmake/font_project.py
+++ b/Lib/fontmake/font_project.py
@@ -103,6 +103,8 @@ class FontProject(object):
# no need to also set the relative 'filename' attribute as that
# will be au... | make master_dir if it's not already present
unlike defcon, ufoLib2 doesn't automatically create one for us (rightly so, I think) | googlefonts_fontmake | train |
a95a47ad968f018e6debabfd12c0b55113e8376b | diff --git a/safe/processors/population_post_processors.py b/safe/processors/population_post_processors.py
index <HASH>..<HASH> 100644
--- a/safe/processors/population_post_processors.py
+++ b/safe/processors/population_post_processors.py
@@ -832,3 +832,32 @@ gender_vulnerability_postprocessors = [
disabled_vulnerabil... | Make sure population post processor only run for population exposure. | inasafe_inasafe | train |
ae7bed74d5efd44ae0c64aaeea887b6922ef5e88 | diff --git a/src/shared/js/Condition.js b/src/shared/js/Condition.js
index <HASH>..<HASH> 100644
--- a/src/shared/js/Condition.js
+++ b/src/shared/js/Condition.js
@@ -80,7 +80,6 @@
* Condition utility.
* @memberof ch
* @constructor
- * @private
* @requires ch.Validation
* @param {Array... | #<I> Update Condition and Popover documentation. | mercadolibre_chico | train |
8a34729cfa1e7e21b9b1d39d37d083b7a165f5f4 | diff --git a/src/lib/layout/Header.js b/src/lib/layout/Header.js
index <HASH>..<HASH> 100644
--- a/src/lib/layout/Header.js
+++ b/src/lib/layout/Header.js
@@ -139,7 +139,6 @@ export default class Header extends Component {
timeLabels.push(
<div key={`top-label-${time.valueOf()}`}
- h... | removed href from header div | namespace-ee_react-calendar-timeline | train |
944144ed06b67618bd43d776be85c2dbec77a05e | diff --git a/src/ruby_supportlib/phusion_passenger/config/validate_install_command.rb b/src/ruby_supportlib/phusion_passenger/config/validate_install_command.rb
index <HASH>..<HASH> 100644
--- a/src/ruby_supportlib/phusion_passenger/config/validate_install_command.rb
+++ b/src/ruby_supportlib/phusion_passenger/config/v... | passenger-config validate-install: improve clarity of message that identifies an Apache installation | phusion_passenger | train |
8a5775e70cd61f57b8d7e9fc4e9e8fd1171aa715 | diff --git a/src/js/CanvasContext.js b/src/js/CanvasContext.js
index <HASH>..<HASH> 100644
--- a/src/js/CanvasContext.js
+++ b/src/js/CanvasContext.js
@@ -201,7 +201,7 @@
tabris.getContext = function(canvas, width, height) {
if (!canvas._gc) {
- canvas._gc = tabris.create("GC", {parent: canvas});
+ ... | Fix Canvas creating GC without namespace prefix
Removing the auto-prefixing of widget names with "rwt.widgets." broke
the Canvas widget that created the GC without prefix.
Change-Id: Ib<I>d1d<I>cd4b<I>ad<I>b7aa8f8beec3ad9bb | eclipsesource_tabris-js | train |
208e351c9e61be83b42ca7140fdac7d85e7eea55 | diff --git a/src/java/com/threerings/parlor/server/ParlorManager.java b/src/java/com/threerings/parlor/server/ParlorManager.java
index <HASH>..<HASH> 100644
--- a/src/java/com/threerings/parlor/server/ParlorManager.java
+++ b/src/java/com/threerings/parlor/server/ParlorManager.java
@@ -1,5 +1,5 @@
//
-// $Id: ParlorMa... | Initialize the game manager after we create it.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@<I> <I>f4-<I>e9-<I>-aa3c-eee0fc<I>fb1 | threerings_narya | train |
3b2befc9eb5503a691fb414dcc41e459aff8fa3d | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -1,7 +1,7 @@
/**
* Pon tasks for dev
* @module pon-task-dev
- * @version 1.0.0
+ * @version 1.0.1
*/
'use strict' | [ci skip] Travis CI committed after build | realglobe-Inc_pon-task-dev | train |
a6db51da4bf3c8e521929ae82ab229974c1bc2cb | diff --git a/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java b/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
index <HASH>..<HASH> 100644
--- a/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
+++ b/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
@... | Make some AbstractMapBasedMultimap helper methods static. (As part of the process, make Sets.unmodifiableNavigableSet GWT-compatible, as NavigableSet is no longer an issue.)
-------------
Created by MOE: <URL> | google_guava | train |
517e83e8058e9d6850ab432ef22d84c2ac2bba5a | diff --git a/lib/yaml/dumper.py b/lib/yaml/dumper.py
index <HASH>..<HASH> 100644
--- a/lib/yaml/dumper.py
+++ b/lib/yaml/dumper.py
@@ -41,7 +41,7 @@ class Dumper(Emitter, Serializer, SafeRepresenter, Resolver):
SafeRepresenter.__init__(self, default_style=default_style,
default_flow_style=defa... | wtf, how did this typo happen | yaml_pyyaml | train |
84c9b6e3e7147453bb2178d902964708facb534b | diff --git a/test/assertUtil.js b/test/assertUtil.js
index <HASH>..<HASH> 100644
--- a/test/assertUtil.js
+++ b/test/assertUtil.js
@@ -75,8 +75,8 @@
* 2) nobody has/should add extra properties to either vecA, vecB
* 3) these properties are numeric.
*
- * @param vecA {Object}
- ... | condensing old vector comparison; fixing label typo | leapmotion_leapjs | train |
764a2c1b39b9b63bc72d9954e8a0b6e462ffd05e | diff --git a/lib/jekyll/utils.rb b/lib/jekyll/utils.rb
index <HASH>..<HASH> 100644
--- a/lib/jekyll/utils.rb
+++ b/lib/jekyll/utils.rb
@@ -197,11 +197,11 @@ module Jekyll
# "._~!$&'()+,;=@" is human readable (not URI-escaped) in URL
# and is allowed in both extN and NTFS.
SLUGIFY_PRETTY... | Change urlsafe to ascii also when actually slugifying | jekyll_jekyll | train |
10702c09bc7a817da7002014218d39ed277360fa | diff --git a/volapi/volapi.py b/volapi/volapi.py
index <HASH>..<HASH> 100644
--- a/volapi/volapi.py
+++ b/volapi/volapi.py
@@ -47,7 +47,7 @@ from autobahn.asyncio.websocket import WebSocketClientProtocol
from .multipart import Data
-__version__ = "1.0.3"
+__version__ = "1.1.0"
BASE_URL = "https://volafile.io"
... | files in other rooms. Fixes #<I> | volafiled_python-volapi | train |
346c8cfe35be805c7f141a5ec1bd286bd93ec495 | diff --git a/tests/ImboClientTest/ImboClientTest.php b/tests/ImboClientTest/ImboClientTest.php
index <HASH>..<HASH> 100644
--- a/tests/ImboClientTest/ImboClientTest.php
+++ b/tests/ImboClientTest/ImboClientTest.php
@@ -344,31 +344,6 @@ class ImboClientTest extends GuzzleTestCase {
$this->assertSame('http://imb... | Removed the short URL tests for now | imbo_imboclient-php | train |
375b9207e09742a9a412d1a7313c96e793a799d0 | diff --git a/lib/redis/connection/memory.rb b/lib/redis/connection/memory.rb
index <HASH>..<HASH> 100644
--- a/lib/redis/connection/memory.rb
+++ b/lib/redis/connection/memory.rb
@@ -1016,6 +1016,20 @@ class Redis
end
def zadd(key, *args)
+ option_xx = args.delete("XX")
+ option_nx = args.... | Support zadd with one valid option (NX, XX, INCR, or CH) | guilleiguaran_fakeredis | train |
73c7fdf05cd09ab7bb1bf043115084f0c2b21fa5 | diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/variable/ValueTypeResolverImpl.java b/engine/src/main/java/org/camunda/bpm/engine/impl/variable/ValueTypeResolverImpl.java
index <HASH>..<HASH> 100644
--- a/engine/src/main/java/org/camunda/bpm/engine/impl/variable/ValueTypeResolverImpl.java
+++ b/engine/src... | chore(engine): make variable value subtype resolution transitive
related to CAM-<I> | camunda_camunda-bpm-platform | train |
83d8c85b47ad754ae9d638609c2dff34f9971b2d | diff --git a/fireplace/actions.py b/fireplace/actions.py
index <HASH>..<HASH> 100644
--- a/fireplace/actions.py
+++ b/fireplace/actions.py
@@ -355,9 +355,7 @@ class Play(GameAction):
card.choose = self.choose
self.broadcast(game, EventListener.ON, *args)
- game.process_deaths()
game._play(card)
- game.proc... | Remove unnecessary death processing phases in Play() | jleclanche_fireplace | train |
76d9b35259065307a72894b8517819b6623324f2 | diff --git a/src/Synapse/Install/RunInstallCommand.php b/src/Synapse/Install/RunInstallCommand.php
index <HASH>..<HASH> 100644
--- a/src/Synapse/Install/RunInstallCommand.php
+++ b/src/Synapse/Install/RunInstallCommand.php
@@ -4,6 +4,7 @@ namespace Synapse\Install;
use Synapse\Command\AbstractDatabaseCommand;
use S... | #<I> | passing a fresh input into the migrations command | synapsestudios_synapse-base | train |
eab25f581a35a979c0806cae1437372029480756 | diff --git a/test/banana.test.js b/test/banana.test.js
index <HASH>..<HASH> 100644
--- a/test/banana.test.js
+++ b/test/banana.test.js
@@ -315,6 +315,25 @@ describe('Banana', function () {
assert.strictEqual(banana.i18n('msg-four', 10, 4), 'There are 10 results in 4 files')
})
+ it('should load the messages ... | Add test for loading multiple locale messages at once | wikimedia_banana-i18n | train |
6b71ed1305af1c3d86bd4e20f7fc1153402d5fd4 | diff --git a/lib/chef_attrdoc.rb b/lib/chef_attrdoc.rb
index <HASH>..<HASH> 100644
--- a/lib/chef_attrdoc.rb
+++ b/lib/chef_attrdoc.rb
@@ -48,6 +48,9 @@ module ChefAttrdoc
def parse
@lexed.each do |(lineno, column), token, content|
case token
+ # Ignored newlines occur when a newline is enco... | added some rubydoc comments for on*_nl cases | mapleoin_chef_attrdoc | train |
e48bd7cfb163efe4e247587848cd91687e23cae6 | diff --git a/oinkwall/firewall.py b/oinkwall/firewall.py
index <HASH>..<HASH> 100644
--- a/oinkwall/firewall.py
+++ b/oinkwall/firewall.py
@@ -30,8 +30,6 @@ import re
logger = logging.getLogger("oinkwall")
-__version__ = 'UNRELEASED'
-
class OinkwallException(Exception):
pass | Remove the version field, it's not used anywhere | knorrie_python-oinkwall | train |
d725b3b768b84f7fcf0fdf9d2e6320d2570c8e0b | diff --git a/minimongo/collection.py b/minimongo/collection.py
index <HASH>..<HASH> 100644
--- a/minimongo/collection.py
+++ b/minimongo/collection.py
@@ -1,6 +1,18 @@
# -*- coding: utf-8 -*-
from pymongo.collection import Collection as PyMongoCollection
+from pymongo.cursor import Cursor as PyMongoCursor
+
+class ... | Stop using pymongo's "as_class" functionality, since it's applied
recursively to all nested fields on the object, and that's totally the wrong
thing to do.
So, the change in behavior is when you call find_one(), we wrap the result
into the right document class, and when you call find(), we create a wrapper
around pymo... | slacy_minimongo | train |
9fa83f7bd554674b33a325c29ed8cb3bddf98c13 | diff --git a/src/apis/StorageController.php b/src/apis/StorageController.php
index <HASH>..<HASH> 100644
--- a/src/apis/StorageController.php
+++ b/src/apis/StorageController.php
@@ -104,7 +104,7 @@ class StorageController extends RestController
['like', 'caption', $search],
['=', 'id'... | ensure folder is only provided when not empty or false | luyadev_luya-module-admin | train |
1131b9d85b7fd897e2557d4fc5bfc9ceb18bcff8 | diff --git a/src/frontend/org/voltdb/Inits.java b/src/frontend/org/voltdb/Inits.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/Inits.java
+++ b/src/frontend/org/voltdb/Inits.java
@@ -39,19 +39,15 @@ import org.apache.zookeeper_voltpatches.CreateMode;
import org.apache.zookeeper_voltpatches.KeeperExcept... | ENG-<I>, in system recovery, skip the snapshot version check when c/l is disabled. (#<I>)
Change-Id: I<I>e4c6cbf<I>da5b5c<I>e<I>f<I> | VoltDB_voltdb | train |
c036bf738ff8b131b79d6b1405794bbf2ba6f0cf | diff --git a/documents4j-util-conversion/src/main/java/com/documents4j/job/ConversionJobWithSourceSpecifiedAdapter.java b/documents4j-util-conversion/src/main/java/com/documents4j/job/ConversionJobWithSourceSpecifiedAdapter.java
index <HASH>..<HASH> 100644
--- a/documents4j-util-conversion/src/main/java/com/documents4j... | Changed visibility for converter adapter to allow for third-party extensions. Removed singleton for noop file consumer. | documents4j_documents4j | train |
a575bc145b2d95dd6acc2dd9c784c33453ec2b1b | diff --git a/src/main/java/mil/nga/geopackage/tiles/features/FeatureTileGenerator.java b/src/main/java/mil/nga/geopackage/tiles/features/FeatureTileGenerator.java
index <HASH>..<HASH> 100644
--- a/src/main/java/mil/nga/geopackage/tiles/features/FeatureTileGenerator.java
+++ b/src/main/java/mil/nga/geopackage/tiles/feat... | feature tile generator constructors and bounding box determination | ngageoint_geopackage-java | train |
73a067ed7ffcbedfb6369240527ebb8c7808d9f5 | diff --git a/tchannel-core/src/main/java/com/uber/tchannel/channels/Peer.java b/tchannel-core/src/main/java/com/uber/tchannel/channels/Peer.java
index <HASH>..<HASH> 100644
--- a/tchannel-core/src/main/java/com/uber/tchannel/channels/Peer.java
+++ b/tchannel-core/src/main/java/com/uber/tchannel/channels/Peer.java
@@ -1... | Connection.connect should respect the preferred direction | uber_tchannel-java | train |
b15fec757fc5a59fafebe0260b685e18a46d919f | diff --git a/src/Symfony/Component/Console/Command/LockableTrait.php b/src/Symfony/Component/Console/Command/LockableTrait.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/Console/Command/LockableTrait.php
+++ b/src/Symfony/Component/Console/Command/LockableTrait.php
@@ -18,7 +18,7 @@ use Symfony\Component\F... | update the author of the LockableTrait | symfony_symfony | train |
25d31ab85a2d5b01d5e8581c68051f509f495fdb | diff --git a/core/Tracker/TableLogAction.php b/core/Tracker/TableLogAction.php
index <HASH>..<HASH> 100644
--- a/core/Tracker/TableLogAction.php
+++ b/core/Tracker/TableLogAction.php
@@ -172,7 +172,7 @@ class TableLogAction
$valueToMatch = preg_replace('@^http[s]?://(www\.)?@i', '', $valueToMatch);
... | refs #<I> only sanitize the values of those action types that are stored sanitized. There is some inconsistency where URLs (Page URLs, Downloads, Outlinks) are stored raw while other action types are stored Sanitized - need to do more tests to check this is enough to fix issue, not sure | matomo-org_matomo | train |
67c0388c564d6b837cadee691e36a98c941cd9a0 | diff --git a/aiortc/contrib/media.py b/aiortc/contrib/media.py
index <HASH>..<HASH> 100644
--- a/aiortc/contrib/media.py
+++ b/aiortc/contrib/media.py
@@ -159,6 +159,8 @@ def player_worker(loop, container, audio_track, video_track, quit_event):
format=audio_format,
rate=audio_sample_rate)
+ video... | [media player] rework pacing algorithm | aiortc_aiortc | train |
27adc9fa91105b9a69833411c9cda0a8e1afa90c | diff --git a/tests/index.php b/tests/index.php
index <HASH>..<HASH> 100644
--- a/tests/index.php
+++ b/tests/index.php
@@ -172,6 +172,56 @@ function processRequestData(\Delight\Auth\Auth $auth) {
return 'too many requests';
}
}
+ else if ($_POST['action'] === 'resendConfirmationForEmail') {
+ try {
... | Add tests for re-sending confirmation requests with class 'Auth' | delight-im_PHP-Auth | train |
ce95fb29919683bac9de4eb87dabeba1221262aa | diff --git a/activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb b/activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb
index <HASH>..<HASH> 100644
--- a/activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb
+++ b/activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb
@@ -1... | "string" isn't a valid column type for ActiveRecord
Conflicts:
activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb | rails_rails | train |
101845a9d5a7528e00cbc6832b8d333635cf1667 | diff --git a/hydpy/core/parametertools.py b/hydpy/core/parametertools.py
index <HASH>..<HASH> 100644
--- a/hydpy/core/parametertools.py
+++ b/hydpy/core/parametertools.py
@@ -1292,6 +1292,16 @@ class KeywordParameter2D(KeywordParameter2DMetaclass):
>>> iswarm
iswarm(north=[True, True],
south=[True... | Improve method `__repr__` of class `KeywordParameter2D` of module `parametertools`.
Now the lists associated with the different keyworks are properly wrapped, when to long for one line. | hydpy-dev_hydpy | train |
cbc94d20e9d8e0ff39f9d06e547fe7543bdc74c4 | diff --git a/pykinect2/PyKinectRuntime.py b/pykinect2/PyKinectRuntime.py
index <HASH>..<HASH> 100644
--- a/pykinect2/PyKinectRuntime.py
+++ b/pykinect2/PyKinectRuntime.py
@@ -84,6 +84,8 @@ class PyKinectRuntime(object):
self._color_source = self._sensor.ColorFrameSource
self.color_frame_desc = self... | infrared support, still not long exposure | Kinect_PyKinect2 | train |
7e65c61077ec23830c931de1f69491a70e225762 | diff --git a/filer/models/tools.py b/filer/models/tools.py
index <HASH>..<HASH> 100644
--- a/filer/models/tools.py
+++ b/filer/models/tools.py
@@ -28,9 +28,3 @@ def clone_files_from_clipboard_to_folder(clipboard, folder):
def move_files_from_clipboard_to_folder(clipboard, folder):
return move_files_to_folder(clip... | pylint loves for models/tools.py | divio_django-filer | train |
8d78b999f56e3ab3852a3997d2ab31f6eed5bf18 | diff --git a/data/php b/data/php
index <HASH>..<HASH> 100755
--- a/data/php
+++ b/data/php
@@ -20,6 +20,11 @@ if (!filter_var($hostIp, FILTER_VALIDATE_IP)) {
throw new Exception('Cannot detect host IP, got value `' . $hostIp . '`.');
}
+// Detect Project Dir on Guest
+$projectDirGuestFile = $homeDirHost . '/vm_pro... | Binary tunnel update to pick up vm project dir | cargomedia_vagrant-phpstorm-tunnel | train |
ef46e442e4320500c847da617aadd5476bca4b70 | diff --git a/test/python/compiler/test_compiler.py b/test/python/compiler/test_compiler.py
index <HASH>..<HASH> 100644
--- a/test/python/compiler/test_compiler.py
+++ b/test/python/compiler/test_compiler.py
@@ -586,7 +586,6 @@ class TestCompiler(QiskitTestCase):
qobj2 = compile(circ2, backend)
self.as... | test_move_measurements no skip (#<I>) | Qiskit_qiskit-terra | train |
08746a2282e770f55500ce941d05d1af3f4a68ca | diff --git a/blockstack_cli_0.14.1/blockstack_client/data.py b/blockstack_cli_0.14.1/blockstack_client/data.py
index <HASH>..<HASH> 100644
--- a/blockstack_cli_0.14.1/blockstack_client/data.py
+++ b/blockstack_cli_0.14.1/blockstack_client/data.py
@@ -286,11 +286,15 @@ def list_update_history( name, current_block=None, ... | give back blockchain-ordered zonefile history | blockstack_blockstack-core | train |
d44f4d9bcb917900868909fa8fc1f3a54ea3fa54 | diff --git a/joomla/application/component/helper.php b/joomla/application/component/helper.php
index <HASH>..<HASH> 100644
--- a/joomla/application/component/helper.php
+++ b/joomla/application/component/helper.php
@@ -98,6 +98,14 @@ class JComponentHelper
// Initialise variables.
$app = JFactory::getApplication(... | Fixed issue [#<I>] Joomla does not load template language file when an error is detected
--HG--
extra : convert_revision : svn%3A6f6e1ebd-4c2b-<I>-<I>f-f<I>bde<I>bce9/development/trunk/libraries%<I> | joomla_joomla-framework | train |
119ac295c63fc116264d90cc967e4d93439d2fe8 | diff --git a/views/js/component/history/historyTable.js b/views/js/component/history/historyTable.js
index <HASH>..<HASH> 100644
--- a/views/js/component/history/historyTable.js
+++ b/views/js/component/history/historyTable.js
@@ -22,10 +22,9 @@ define([
'jquery',
'lodash',
'i18n',
- 'layout/loading-b... | Move loader outside of the historyTable component | oat-sa_extension-tao-proctoring | train |
f4692ce49e75f593b1a52f6737d6130c8f1053f0 | diff --git a/porespy/generators/__imgen__.py b/porespy/generators/__imgen__.py
index <HASH>..<HASH> 100644
--- a/porespy/generators/__imgen__.py
+++ b/porespy/generators/__imgen__.py
@@ -841,7 +841,8 @@ def _perlin_noise_2D(shape, res):
return np.sqrt(2)*((1-t[:, :, 1])*n0 + t[:, :, 1]*n1)
-def blobs(shape: Li... | parallelized blobs, added test | PMEAL_porespy | train |
92bef7e0c23d69342248c2f682fdfb7c77f9bc4a | diff --git a/app/assets/javascripts/govuk_publishing_components/all_components.js b/app/assets/javascripts/govuk_publishing_components/all_components.js
index <HASH>..<HASH> 100644
--- a/app/assets/javascripts/govuk_publishing_components/all_components.js
+++ b/app/assets/javascripts/govuk_publishing_components/all_com... | Initialise govuk-frontend in all components
For interoperability these should be initialised as part of all
components. | alphagov_govuk_publishing_components | train |
ede0f0c873ad1d3f04f18836c0494a5d2ea89cb3 | diff --git a/src/Http/Middleware/VeryBasicAuth.php b/src/Http/Middleware/VeryBasicAuth.php
index <HASH>..<HASH> 100644
--- a/src/Http/Middleware/VeryBasicAuth.php
+++ b/src/Http/Middleware/VeryBasicAuth.php
@@ -14,26 +14,22 @@ class VeryBasicAuth
public function handle($request, Closure $next)
{
// L... | Code cleanup and refactoring. | olssonm_l5-very-basic-auth | train |
de6ad22ca6baf39e199a0b61e75735379d729240 | diff --git a/expvar.go b/expvar.go
index <HASH>..<HASH> 100644
--- a/expvar.go
+++ b/expvar.go
@@ -11,4 +11,6 @@ var (
readUnmarshalError = expvar.NewInt("dhtReadUnmarshalError")
readQuery = expvar.NewInt("dhtReadQuery")
announceErrors = expvar.NewInt("dhtAnnounceErrors")
+ writeErrors = expva... | dht: Add counters for writes and write errors | anacrolix_dht | train |
cd30565aed0f4260b8ea0a4ebc0a4245a851218a | diff --git a/pytorch_pretrained_bert/convert_tf_checkpoint_to_pytorch.py b/pytorch_pretrained_bert/convert_tf_checkpoint_to_pytorch.py
index <HASH>..<HASH> 100755
--- a/pytorch_pretrained_bert/convert_tf_checkpoint_to_pytorch.py
+++ b/pytorch_pretrained_bert/convert_tf_checkpoint_to_pytorch.py
@@ -50,7 +50,7 @@ def con... | Fix importing unofficial TF models
Importing unofficial TF models seems to be working well, at least for me.
This PR resolves #<I>. | huggingface_pytorch-pretrained-BERT | train |
fc9f03cd96908bd2ab21847991807f5352e820f6 | diff --git a/python/ray/tests/test_actor.py b/python/ray/tests/test_actor.py
index <HASH>..<HASH> 100644
--- a/python/ray/tests/test_actor.py
+++ b/python/ray/tests/test_actor.py
@@ -1776,7 +1776,11 @@ def setup_queue_actor():
def read(self):
return self.queue
- yield Queue.remote()
+ queu... | Fix queue actor init in setup_queue_actor fixture (#<I>) | ray-project_ray | train |
789b162e06f25813d38c1597e0da037ad536f292 | diff --git a/state/state_test.go b/state/state_test.go
index <HASH>..<HASH> 100644
--- a/state/state_test.go
+++ b/state/state_test.go
@@ -1346,12 +1346,7 @@ func (s *StateSuite) TestAddSubnetErrors(c *gc.C) {
}
func (s *StateSuite) TestSubnetEnsureDeadRemove(c *gc.C) {
- subnetInfo := state.SubnetInfo{
- Provider... | Fix for EnsureDead, with test | juju_juju | train |
642c17ef4026584b255a0f4d7343cff8bcec8f11 | diff --git a/src/cli.js b/src/cli.js
index <HASH>..<HASH> 100755
--- a/src/cli.js
+++ b/src/cli.js
@@ -171,17 +171,18 @@ async function upgradeAndDockerize (name) {
}
function updateLastVersionUsed() {
- const fileHeader = "DO NOT MODIFY";
+ const fileHeader = ;
// Check version in .gluestick file
const g... | removed unnecessary version check code for simpler method | TrueCar_gluestick | train |
ba7c231c33f90fc2602b9e6456fe29e926484436 | diff --git a/platform/html5/html.js b/platform/html5/html.js
index <HASH>..<HASH> 100644
--- a/platform/html5/html.js
+++ b/platform/html5/html.js
@@ -520,15 +520,9 @@ exports.layoutText = function(text) {
}
}
- var children = []
- for(var i = 0; i < dom.children.length; )
- {
- var child = dom.children[i]
- i... | remove only children we aware of, skipping all html nodes added by layout | pureqml_qmlcore | train |
81e23dbd7b4a4470edb232b333c5c1eabe1280f8 | diff --git a/update.java b/update.java
index <HASH>..<HASH> 100644
--- a/update.java
+++ b/update.java
@@ -123,6 +123,7 @@ public static void main(String argv[]) throws IOException {
query.addRecord(ZONE, soa);
query.addRecord(UPDATE, a);
+ query.addRecord(UPDATE, dela);
doUpdate(query, res);
} | put the delete record in the update before sending it
git-svn-id: <URL> | dnsjava_dnsjava | train |
e1ce45f244ed14485f0d5f91791389daff33621b | diff --git a/salt/modules/virt.py b/salt/modules/virt.py
index <HASH>..<HASH> 100644
--- a/salt/modules/virt.py
+++ b/salt/modules/virt.py
@@ -56,18 +56,56 @@ def __get_conn():
.. code-block:: yaml
- virt:
+ libvirt:
hypervisor: esxi
- hostname: 192.168.9.9... | Clarify and make connection settings more flexible for libvirt
Previously you could specify a hostname or IP in the minion configuration. It was not flexible enough. Now you can either specify an explicit libvirt URI, or a libvirt connection alias.
Note: this is an incompatible change to #<I> when it comes to the con... | saltstack_salt | train |
7db718682ae5c4134d62dce31348ce1a34b18ebe | diff --git a/includes/types/base.php b/includes/types/base.php
index <HASH>..<HASH> 100644
--- a/includes/types/base.php
+++ b/includes/types/base.php
@@ -39,6 +39,15 @@ class Icon_Picker_Type {
*/
protected $version = '';
+ /**
+ * JS Controller
+ *
+ * @since 0.1.0
+ * @access protected
+ * @var string... | Improve Icon_Picker_Types_Registry | ineagu_wp-icon-picker | train |
29e4f41108dd7ce69a8e6af77d71ae5aec74c2b9 | diff --git a/gogadgets/cli.go b/gogadgets/cli.go
index <HASH>..<HASH> 100644
--- a/gogadgets/cli.go
+++ b/gogadgets/cli.go
@@ -58,7 +58,13 @@ func getConfig() string {
}
func getStatus() {
- s, err := gogadgets.NewClientSockets(*host)
+ cfg := gogadgets.SocketsConfig{
+ Host: *host,
+ SubPort: 6111,
+ PubPort... | oops - broke the cli | cswank_gogadgets | train |
db38bc2fac633a0d2b480896051059431cdf2d86 | diff --git a/mindmaps-graql/src/main/java/io/mindmaps/graql/api/parser/QueryParser.java b/mindmaps-graql/src/main/java/io/mindmaps/graql/api/parser/QueryParser.java
index <HASH>..<HASH> 100644
--- a/mindmaps-graql/src/main/java/io/mindmaps/graql/api/parser/QueryParser.java
+++ b/mindmaps-graql/src/main/java/io/mindmaps... | Fix bug when parsing to the end of a stream of patterns | graknlabs_grakn | train |
c9f710b70b7f1e6fc37ef9b86993d78d21442078 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@ setup(
author='Ultrabug',
author_email='ultrabug@ultrabug.net',
description='py3status is an extensible i3status wrapper written in python',
- long_description=read('README.md'),
+ long_desc... | switch back to RST for the README wrt pypi | ultrabug_py3status | train |
85fa190f59b0a3a47198f5ba32b0a0b6b4dd69ed | diff --git a/extensions/lock/bootstrap.php b/extensions/lock/bootstrap.php
index <HASH>..<HASH> 100644
--- a/extensions/lock/bootstrap.php
+++ b/extensions/lock/bootstrap.php
@@ -16,7 +16,8 @@ use Illuminate\Contracts\Events\Dispatcher;
return [
(new Extend\Assets('forum'))
- ->defaultAssets(__DIR__)
+ ... | Extender: List all assets explicitly | flarum_core | train |
6b9dfc6e82c16177b688bd1609697ae3cd382aa3 | diff --git a/cmd/crio/main.go b/cmd/crio/main.go
index <HASH>..<HASH> 100644
--- a/cmd/crio/main.go
+++ b/cmd/crio/main.go
@@ -144,7 +144,7 @@ func main() {
}...)
app.Before = func(c *cli.Context) (err error) {
- config, err := criocli.GetConfigFromContext(c)
+ config, err := criocli.GetAndMergeConfigFromContex... | criocli: Avoid parsing the config twice
This splits out the config file loading and commandline argument
processing from GetConfigFromContext() so that subcommand like `crio
config' and `crio wipe` are able to fetch the configuration from the
context without reloading the config files. Apart from being inefficient
thi... | cri-o_cri-o | train |
c9d57de3d806120a382fd58b524647427ce88fef | diff --git a/web/modeshape-web-explorer/src/main/java/org/modeshape/web/server/impl/TimeUnit.java b/web/modeshape-web-explorer/src/main/java/org/modeshape/web/server/impl/TimeUnit.java
index <HASH>..<HASH> 100644
--- a/web/modeshape-web-explorer/src/main/java/org/modeshape/web/server/impl/TimeUnit.java
+++ b/web/modesh... | Changed timeunits' names to better reflect their definition | ModeShape_modeshape | train |
f8dea84e39980d6105beb0315996c81497b5cf16 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -34,7 +34,6 @@ if (!isStream(new winston.Transport())) {
*
* @param {object} config - Configuration settings for a new Winston transport
* @param {string} [config.level=info] - the minimum level to log
- * @param {boolea... | Move jsdoc entry to last position to match readme | adrianhall_winston-splunk-httplogger | train |
009467ec9e0033c47724b15dd0e775c4fe696522 | diff --git a/src/modules/core/index.js b/src/modules/core/index.js
index <HASH>..<HASH> 100644
--- a/src/modules/core/index.js
+++ b/src/modules/core/index.js
@@ -6,8 +6,7 @@ var passThrough = require('../pass-through');
var capitalize = require('capitalize');
-module.exports = function() {
-
+module.exports = fun... | make col reordering an option | gridgrid_grid | train |
5c8e965a283e8c127087686ee9b5bbc40261745e | diff --git a/.travis.yml b/.travis.yml
index <HASH>..<HASH> 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,7 @@
branches:
except: /^v\d/
language: node_js
-node_js: node
+node_js:
+ - node
+ - '8.8.1'
after_script: node_modules/.bin/nyc report --reporter=text-lcov | npx coveralls
diff --git a/index.js b/... | use built-in require.resolve if `paths` option is available
instead of user-land `resolve-from` module | shinnn_resolve-from-npm | train |
c1abfea33d0c3e80809814c1048b156028c8fcf9 | diff --git a/packages/@uppy/xhr-upload/src/index.js b/packages/@uppy/xhr-upload/src/index.js
index <HASH>..<HASH> 100644
--- a/packages/@uppy/xhr-upload/src/index.js
+++ b/packages/@uppy/xhr-upload/src/index.js
@@ -1,7 +1,7 @@
const { Plugin } = require('@uppy/core')
const cuid = require('cuid')
const Translator = r... | xhr-upload: load CompanionClient appropriately | transloadit_uppy | train |
1713ddd7270a6876fa3a0ed7a8a825a674ec9dc4 | diff --git a/dfply/transform.py b/dfply/transform.py
index <HASH>..<HASH> 100644
--- a/dfply/transform.py
+++ b/dfply/transform.py
@@ -10,7 +10,6 @@ def mutate(df, **kwargs):
@dfpipe
def transmute(df, *keep_columns, **kwargs):
- print keep_columns, kwargs.keys()
for key, value in kwargs.items():
df... | removed print statement that shouldnt be there | kieferk_dfply | train |
e2ce55871ed2020aba975f0e04b3e53d31cf5d4a | diff --git a/telethon/tl/custom/message.py b/telethon/tl/custom/message.py
index <HASH>..<HASH> 100644
--- a/telethon/tl/custom/message.py
+++ b/telethon/tl/custom/message.py
@@ -41,6 +41,14 @@ class Message:
self._fwd_from_entity = entities.get(get_peer_id(
types.PeerChannel(fwd.c... | Replace custom.Message's class on creation | LonamiWebs_Telethon | train |
0d9a37d0c249e871af0e667317be3169054a989f | diff --git a/daemon/exec_linux.go b/daemon/exec_linux.go
index <HASH>..<HASH> 100644
--- a/daemon/exec_linux.go
+++ b/daemon/exec_linux.go
@@ -19,13 +19,11 @@ func (daemon *Daemon) execSetPlatformOpt(c *container.Container, ec *exec.Config
}
}
if ec.Privileged {
- if p.Capabilities == nil {
- p.Capabilities =... | oci: inheritable capability set should be empty
The Linux kernel never sets the Inheritable capability flag to anything
other than empty. Moby should have the same behavior, and leave it to
userspace code within the container to set a non-empty value if desired. | moby_moby | train |
1f03eb7e339fef3ab57a73beed5e43d04b1886b1 | diff --git a/src/org/openscience/cdk/modeling/builder3d/MM2BasedAtomTypePattern.java b/src/org/openscience/cdk/modeling/builder3d/MM2BasedAtomTypePattern.java
index <HASH>..<HASH> 100644
--- a/src/org/openscience/cdk/modeling/builder3d/MM2BasedAtomTypePattern.java
+++ b/src/org/openscience/cdk/modeling/builder3d/MM2Bas... | Added public clasifier so that it get's compiled, and added missing '.' in JavaDoc
git-svn-id: <URL> | cdk_cdk | train |
2f42c01e7d069f7cccfdafa34ded9d8fe0e31bb4 | diff --git a/plugins/org.eclipse.xtext.xbase/src/org/eclipse/xtext/xbase/typesystem/internal/FeatureLinkingCandidate.java b/plugins/org.eclipse.xtext.xbase/src/org/eclipse/xtext/xbase/typesystem/internal/FeatureLinkingCandidate.java
index <HASH>..<HASH> 100644
--- a/plugins/org.eclipse.xtext.xbase/src/org/eclipse/xtext... | [xbase] Fixes bug <I>: Added validation and quick fix for private feature call in subclass context | eclipse_xtext-extras | train |
4970f5df292367782238c9f34f809ecb4036eea9 | diff --git a/Gateway/DataStorageBase.php b/Gateway/DataStorageBase.php
index <HASH>..<HASH> 100644
--- a/Gateway/DataStorageBase.php
+++ b/Gateway/DataStorageBase.php
@@ -114,6 +114,9 @@ class DataStorageBase
*/
public function getIterator()
{
+ // NOTE: consider if you have any specific function... | fix improt set from specific method of individual class | phPoirot_Storage | train |
8e8f9f3d6fb15b1264ba357fc10d1a79c2c09d04 | diff --git a/question/type/multianswer/edit_multianswer_form.php b/question/type/multianswer/edit_multianswer_form.php
index <HASH>..<HASH> 100644
--- a/question/type/multianswer/edit_multianswer_form.php
+++ b/question/type/multianswer/edit_multianswer_form.php
@@ -29,7 +29,7 @@ class question_edit_multianswer_form ex... | MDL-<I> Removing temporarely the decoding as it does not allow to create a new
question in actual HEAD. | moodle_moodle | train |
9786336c099e9647f3718da2594d073835856c93 | diff --git a/CalendarIOS.js b/CalendarIOS.js
index <HASH>..<HASH> 100644
--- a/CalendarIOS.js
+++ b/CalendarIOS.js
@@ -14,7 +14,7 @@ var {
View
} = React;
-var
+var
MAX_COLUMNS = 7,
MAX_ROWS = 7,
DEVICE_WIDTH = Dimensions.get('window').width,
@@ -62,25 +62,25 @@ var Calendar = React.createClass({
r... | Fixing control button size for smaller devices | christopherdro_react-native-calendar | train |
9811d05916c7d1ca74355fe5dd7582acfd76b54a | diff --git a/src/Convert/Converters/FFMpeg.php b/src/Convert/Converters/FFMpeg.php
index <HASH>..<HASH> 100644
--- a/src/Convert/Converters/FFMpeg.php
+++ b/src/Convert/Converters/FFMpeg.php
@@ -102,7 +102,7 @@ class FFMpeg extends AbstractConverter
// preset. Appears first in the list as recommended in the cw... | Preset was not working for FFMpeg | rosell-dk_webp-convert | train |
7950d810f9151992d6ce4988f08c157f7d7cb0dc | diff --git a/core-bundle/contao/library/Contao/Widget.php b/core-bundle/contao/library/Contao/Widget.php
index <HASH>..<HASH> 100644
--- a/core-bundle/contao/library/Contao/Widget.php
+++ b/core-bundle/contao/library/Contao/Widget.php
@@ -133,6 +133,12 @@ abstract class Widget extends \Controller
*/
protected $bln... | [Core] Do not create two versions when sorting image galleries or downloads | contao_contao | train |
22fa11ad40a263d4481aa72179b01fd598d39818 | diff --git a/hamster/add_custom_fact.py b/hamster/add_custom_fact.py
index <HASH>..<HASH> 100644
--- a/hamster/add_custom_fact.py
+++ b/hamster/add_custom_fact.py
@@ -91,16 +91,13 @@ class CustomFactController:
end_date = start_date = datetime.datetime.now()
- self.on_in_progress_toggled(self.ge... | utf-8 fixes for python <I>
svn path=/trunk/; revision=<I> | projecthamster_hamster | train |
c944338224642e38508ead3e0c1ab671ae4be9f3 | diff --git a/lib/plugins/browsertime/index.js b/lib/plugins/browsertime/index.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/browsertime/index.js
+++ b/lib/plugins/browsertime/index.js
@@ -263,9 +263,16 @@ module.exports = {
}
run.har = api.pickAPage(result.har, harIndex);
... | Fix how to get browser and version (#<I>) | sitespeedio_sitespeed.io | train |
fddc0aed2bed09584a0231a55e7e04d2f3fcce87 | diff --git a/multiqc/modules/somalier/somalier.py b/multiqc/modules/somalier/somalier.py
index <HASH>..<HASH> 100644
--- a/multiqc/modules/somalier/somalier.py
+++ b/multiqc/modules/somalier/somalier.py
@@ -434,8 +434,19 @@ class MultiqcModule(BaseMultiqcModule):
def somalier_relatedness_plot(self):
dat... | Somalier: Rewrite how colours / legend is handled for the relatedness plot
See #<I> | ewels_MultiQC | train |
c5f55096ff5a8d6d8cc7babfed1f48812a4464ef | diff --git a/archunit/src/main/java/com/tngtech/archunit/core/importer/ClassFileProcessor.java b/archunit/src/main/java/com/tngtech/archunit/core/importer/ClassFileProcessor.java
index <HASH>..<HASH> 100644
--- a/archunit/src/main/java/com/tngtech/archunit/core/importer/ClassFileProcessor.java
+++ b/archunit/src/main/j... | reduce log levels of class import details
Since some users had trouble configuring their logging and consequently hanging Maven builds when using Windows CMD as their console, the log levels for the most detailed information during class file import is now reduced to TRACE. In the end it also seems reasonable to log d... | TNG_ArchUnit | train |
2f586dd3f3e8eb74669e024046ca928394f76717 | diff --git a/docs/src/documentation/components/MeterDoc.js b/docs/src/documentation/components/MeterDoc.js
index <HASH>..<HASH> 100644
--- a/docs/src/documentation/components/MeterDoc.js
+++ b/docs/src/documentation/components/MeterDoc.js
@@ -20,12 +20,20 @@ var thresholds = [
{label: 'Error', value: 70, colorIndex:... | Changed series examples in MeterDoc. | grommet_grommet | train |
fce90a6ba50e69384ce6030ba0b4c974ae4ec723 | diff --git a/test/proto.py b/test/proto.py
index <HASH>..<HASH> 100644
--- a/test/proto.py
+++ b/test/proto.py
@@ -58,7 +58,6 @@ class ProtoLibrary(object):
update_config(self.config, use_environ=False)
assert self.config.loaded[0] == config_path + '/config.yaml'
- import pdb; pdb.set_trace()... | Breakpoints removed. #<I>. | CivicSpleen_ambry | train |
a39ba3aeea08bc72e970677a20636e58baaf9acf | diff --git a/test/Image1.rb b/test/Image1.rb
index <HASH>..<HASH> 100644
--- a/test/Image1.rb
+++ b/test/Image1.rb
@@ -5,7 +5,7 @@ require 'test/unit'
require 'test/unit/ui/console/testrunner' unless RUBY_VERSION[/^1\.9|^2/]
class Image1_UT < Test::Unit::TestCase
- FreezeError = RUBY_VERSION[/^1\.9|^2/] ? RuntimeE... | Expect FrozenError starting with Ruby <I> | rmagick_rmagick | train |
973a741490550acb357171e81520e9fe29fdae7d | diff --git a/src/Illuminate/Database/Eloquent/Builder.php b/src/Illuminate/Database/Eloquent/Builder.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Database/Eloquent/Builder.php
+++ b/src/Illuminate/Database/Eloquent/Builder.php
@@ -249,12 +249,14 @@ class Builder {
*/
public function withDeleted()
{
+ $c... | More tests and tweaks to soft delete. | laravel_framework | train |
1c0d10f67e1c1f903c8dd23fa79b519c6a79b85e | diff --git a/python/ray/tune/integration/xgboost.py b/python/ray/tune/integration/xgboost.py
index <HASH>..<HASH> 100644
--- a/python/ray/tune/integration/xgboost.py
+++ b/python/ray/tune/integration/xgboost.py
@@ -54,7 +54,8 @@ class TuneReportCallback(TuneCallback):
metrics = [metrics]
self._met... | [tune] Add xgboost_ray integration (#<I>) | ray-project_ray | train |
28e9193e9ebde743c19f334a7294830fc6429d06 | diff --git a/src/Composer/Console/Application.php b/src/Composer/Console/Application.php
index <HASH>..<HASH> 100644
--- a/src/Composer/Console/Application.php
+++ b/src/Composer/Console/Application.php
@@ -148,6 +148,15 @@ class Application extends BaseApplication
Silencer::call('exec', 'sudo -K > /de... | Check temp folder usability before runtime to prevent weird errors. | composer_composer | train |
15ff11638eac01ef12bae10fcf02986cfeb797c9 | diff --git a/spec/version_spec.rb b/spec/version_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/version_spec.rb
+++ b/spec/version_spec.rb
@@ -3,8 +3,11 @@ require_relative './spec_helper'
require 'json'
require 'builderator/control/version'
+# rubocop:disable Metrics/ClassLength
+
module Builderator
module Con... | Fix issues in version_spec checks found by rubocop | rapid7_builderator | train |
bded790f4651459b2ac41d9f96f2393204b41012 | diff --git a/core/src/main/java/hudson/model/User.java b/core/src/main/java/hudson/model/User.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/model/User.java
+++ b/core/src/main/java/hudson/model/User.java
@@ -250,10 +250,17 @@ public class User extends AbstractModelObject implements AccessControlled, ... | User.impersonate() now does the loadUserDetailsByName call.
So ApiTokenFilter no longer needs to do that. | jenkinsci_jenkins | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.