hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
e5829355821bd930e00bed76e2acd15ce96d8816 | diff --git a/forms/HtmlEditorField.php b/forms/HtmlEditorField.php
index <HASH>..<HASH> 100644
--- a/forms/HtmlEditorField.php
+++ b/forms/HtmlEditorField.php
@@ -515,7 +515,8 @@ class HtmlEditorField_Toolbar extends RequestHandler {
}
// Instanciate file wrapper and get fields based on its type
- if($file && ... | BUGFIX insertion of images (trac #<I>)
Allow insertion of images via oEmbed dialog using a direct url | silverstripe_silverstripe-framework | train |
edc188be570f7a104d91ed6ce6c1b150c396fc67 | diff --git a/source/awesome_tool/mvc/models/state.py b/source/awesome_tool/mvc/models/state.py
index <HASH>..<HASH> 100644
--- a/source/awesome_tool/mvc/models/state.py
+++ b/source/awesome_tool/mvc/models/state.py
@@ -74,6 +74,7 @@ class StateModel(ModelMT):
self.outcomes = []
self.reload_input_data_... | bug fix for not updating outcome names - add again disappeared line in StateModel | DLR-RM_RAFCON | train |
b36cf8d866d51c26383cba4ea65d5a552a3322a2 | diff --git a/blueprints/blueprints-core/src/main/java/com/tinkerpop/blueprints/util/ElementHelper.java b/blueprints/blueprints-core/src/main/java/com/tinkerpop/blueprints/util/ElementHelper.java
index <HASH>..<HASH> 100644
--- a/blueprints/blueprints-core/src/main/java/com/tinkerpop/blueprints/util/ElementHelper.java
+... | Getting label with ElementHelper now throws ClassCastException if the value is not a String. | apache_tinkerpop | train |
2b0ac0b481d4c4c174e0b15bccdf04a00acda63a | diff --git a/lib/TreasureChest/Autoloader.php b/lib/TreasureChest/Autoloader.php
index <HASH>..<HASH> 100644
--- a/lib/TreasureChest/Autoloader.php
+++ b/lib/TreasureChest/Autoloader.php
@@ -6,7 +6,7 @@ namespace TreasureChest;
class Autoloader
{
/**
- * Registers Twig\Autoloader as an SPL autoloader.
+ ... | Fixed docblock of autoloader | jamesmoss_treasure-chest | train |
62e570a4e49999798d3f80ea6e2370ffc0b1234d | diff --git a/core/connect.js b/core/connect.js
index <HASH>..<HASH> 100644
--- a/core/connect.js
+++ b/core/connect.js
@@ -1,6 +1,5 @@
'use strict';
-var R_PATH = /^(?:\w+:\/\/[^\/]*)?([\s\S]*)$/;
var STATUS_CODES = require('http').STATUS_CODES;
var Track = /** @type Track */ require('./track');
@@ -452,7 +451,7... | server: Support fqdn urls
* Remove fqdn support from connect
* Normalize req.url in server handler | fistlabs_fist | train |
42b398c45aebfc99240e102db816fa162d47ce0a | diff --git a/core/ArchiveProcessor/Loader.php b/core/ArchiveProcessor/Loader.php
index <HASH>..<HASH> 100644
--- a/core/ArchiveProcessor/Loader.php
+++ b/core/ArchiveProcessor/Loader.php
@@ -31,8 +31,6 @@ use Psr\Log\LoggerInterface;
*/
class Loader
{
- const MIN_VISIT_TIME_TTL = 3600;
-
/**
* @var Pa... | Remove unneeded code (#<I>)
* Remove unneeded code
* remove constant | matomo-org_matomo | train |
718dccfa5ea0d5f841ed7578dc2167419f91ab31 | diff --git a/shardingsphere-jdbc/shardingsphere-jdbc-governance/src/main/java/org/apache/shardingsphere/driver/governance/internal/datasource/GovernanceShardingSphereDataSource.java b/shardingsphere-jdbc/shardingsphere-jdbc-governance/src/main/java/org/apache/shardingsphere/driver/governance/internal/datasource/Governa... | Adjust the order of members (#<I>) | apache_incubator-shardingsphere | train |
e95d33b77e9cff79771f6f1057c790d01cc8db10 | diff --git a/lib/ModuleGraph.js b/lib/ModuleGraph.js
index <HASH>..<HASH> 100644
--- a/lib/ModuleGraph.js
+++ b/lib/ModuleGraph.js
@@ -75,11 +75,22 @@ class ExportsInfo {
}
_sortExports() {
- const newMap = new Map();
- for (const name of Array.from(this._exports.keys()).sort()) {
- newMap.set(name, this._exp... | Improve performance of ExportsInfo.sortExports | webpack_webpack | train |
dff509ddf352967251e4cde6b386c57a7705719b | diff --git a/core-bundle/contao/library/Contao/System.php b/core-bundle/contao/library/Contao/System.php
index <HASH>..<HASH> 100644
--- a/core-bundle/contao/library/Contao/System.php
+++ b/core-bundle/contao/library/Contao/System.php
@@ -377,10 +377,10 @@ abstract class System
{
// Generate the cache files
... | [Core] Prevent the "unexpected $end" error triggered by cache files which only contain `<?php` | contao_contao | train |
1e3963b74340ebdf0e2ff0bb5538b11de39d81c8 | diff --git a/pebble/pool/process.py b/pebble/pool/process.py
index <HASH>..<HASH> 100644
--- a/pebble/pool/process.py
+++ b/pebble/pool/process.py
@@ -19,6 +19,7 @@ import time
from itertools import count
from collections import namedtuple
from multiprocessing import cpu_count
+from multiprocessing.pool import Remot... | Use RemoteTraceback to output the cause of an exception when it is thrown | noxdafox_pebble | train |
113bfcb4eacaa3346e28f1e5103928aaa4c47c83 | diff --git a/moto/s3/responses.py b/moto/s3/responses.py
index <HASH>..<HASH> 100644
--- a/moto/s3/responses.py
+++ b/moto/s3/responses.py
@@ -336,6 +336,12 @@ class ResponseObject(_TemplateEnvironmentMixin):
self.backend.set_bucket_website_configuration(bucket_name, body)
return ""
e... | Fix duplicate bucket creation with LocationConstraint. Closes #<I>. | spulec_moto | train |
f871a2b8c0353a45b3b55d71ef8d131b10e4e11a | diff --git a/testing/src/main/java/org/togglz/testing/fallback/FallbackTestFeatureManager.java b/testing/src/main/java/org/togglz/testing/fallback/FallbackTestFeatureManager.java
index <HASH>..<HASH> 100644
--- a/testing/src/main/java/org/togglz/testing/fallback/FallbackTestFeatureManager.java
+++ b/testing/src/main/ja... | adding new method to fallback test feature manager | togglz_togglz | train |
42ee39af43abb5cd93c4361d02385d82e8892cb3 | diff --git a/src/core.js b/src/core.js
index <HASH>..<HASH> 100755
--- a/src/core.js
+++ b/src/core.js
@@ -960,7 +960,7 @@
var initialized = false;
// to handle mouse event
- var registeredMouseEventObj = [];
+ //var registeredMouseEventObj = [];
// to keep track of deferred stuff
var pendingDef... | Commented out the "old" mouse code | melonjs_melonJS | train |
6468d792bc173340cc6fafa224c7ceac5a4b089b | diff --git a/remoto/tests/test_util.py b/remoto/tests/test_util.py
index <HASH>..<HASH> 100644
--- a/remoto/tests/test_util.py
+++ b/remoto/tests/test_util.py
@@ -10,3 +10,7 @@ class TestAdminCommand(object):
def test_skip_prepend_if_not_sudo(self):
result = util.admin_command(False, ['ls'])
asse... | do not mangle the command if it needs sudo | alfredodeza_remoto | train |
a787ad472da020f4b55732984ca7f497604e32f2 | diff --git a/java/client/src/org/openqa/selenium/remote/AddWebDriverSpecHeaders.java b/java/client/src/org/openqa/selenium/remote/AddWebDriverSpecHeaders.java
index <HASH>..<HASH> 100644
--- a/java/client/src/org/openqa/selenium/remote/AddWebDriverSpecHeaders.java
+++ b/java/client/src/org/openqa/selenium/remote/AddWeb... | [grid] Making NewSessionCreationTest aware of the improvements on AddWebDriverSpecHeaders | SeleniumHQ_selenium | train |
e4c87ff3659d9bdab2f2c85ad92445fbbb575e37 | diff --git a/lib/router/router.js b/lib/router/router.js
index <HASH>..<HASH> 100644
--- a/lib/router/router.js
+++ b/lib/router/router.js
@@ -142,7 +142,7 @@ Router.prototype = {
*/
reset: function() {
if (this.state) {
- forEach(this.state.handlerInfos, function(handlerInfo) {
+ forEach(this.stat... | reset() should trigger exit from leaf up
The reset() function documentation describes that it should trigger the exit from leaf up the ancestor chain. However, it was doing the reverse. I added some assertions to the reset-test to make sure that this works as described.
Additionally, I removed the second call for rese... | tildeio_router.js | train |
3dd9b6da8c7a1cb670c0bb4db208cfd965a5ad10 | diff --git a/lib/api/units/validateBody.js b/lib/api/units/validateBody.js
index <HASH>..<HASH> 100644
--- a/lib/api/units/validateBody.js
+++ b/lib/api/units/validateBody.js
@@ -11,11 +11,10 @@ function isPlainText(mediaType) {
}
function isJson(mediaType) {
- return mediaType.type === 'application' && mediaType.... | refactor: removes "isJsonWeak" from "validateBody" | apiaryio_gavel.js | train |
1c12b8a680ae9a9765609add63dc60f89fb5451e | diff --git a/lib/cucumber/platform.rb b/lib/cucumber/platform.rb
index <HASH>..<HASH> 100644
--- a/lib/cucumber/platform.rb
+++ b/lib/cucumber/platform.rb
@@ -4,7 +4,7 @@ require 'rbconfig'
module Cucumber
unless defined?(Cucumber::VERSION)
- VERSION = '1.3.1'
+ VERSION = '2.0'
BINARY = File... | Master branch now targets <I> | cucumber_cucumber-ruby | train |
412264a1f7d354aa53403498b536ac057d933e9b | diff --git a/app/models/camaleon_cms/category.rb b/app/models/camaleon_cms/category.rb
index <HASH>..<HASH> 100644
--- a/app/models/camaleon_cms/category.rb
+++ b/app/models/camaleon_cms/category.rb
@@ -15,6 +15,7 @@ class CamaleonCms::Category < CamaleonCms::TermTaxonomy
has_many :children, class_name: "CamaleonCms... | - fixed site id for custom field groups created by code | owen2345_camaleon-cms | train |
fb224f23f03b2e537fb94027f0b2a84ded836d44 | diff --git a/hiwenet/test_hiwenet.py b/hiwenet/test_hiwenet.py
index <HASH>..<HASH> 100644
--- a/hiwenet/test_hiwenet.py
+++ b/hiwenet/test_hiwenet.py
@@ -14,12 +14,13 @@ if version_info.major==2 and version_info.minor==7:
elif version_info.major > 2:
from hiwenet import extract as hiwenet
from hiwenet impor... | extending CLI vs API test to all metrics and semi metrics | raamana_hiwenet | train |
3d73e6233cd302970cd4b64b3462eb1fe4538247 | diff --git a/cleverhans/attacks.py b/cleverhans/attacks.py
index <HASH>..<HASH> 100644
--- a/cleverhans/attacks.py
+++ b/cleverhans/attacks.py
@@ -357,17 +357,17 @@ class FastGradientMethod(Attack):
class ProjectedGradientDescent(Attack):
"""
- Class implements either the Basic Iterative Method (Kurakin et a... | get rid of "self.child" | tensorflow_cleverhans | train |
64b15fbdd614b8cf41518ae523db9d4e0dabd697 | diff --git a/PyParse.py b/PyParse.py
index <HASH>..<HASH> 100644
--- a/PyParse.py
+++ b/PyParse.py
@@ -9,7 +9,7 @@ import csv
class Parser(object):
def __init__(self, filepath, field_map, dialect=None,
- has_header=None, line_skip=0, firstRow_kw=''):
+ has_header=None, line_skip=0, firstRo... | option to open file in different read modes | mhjohnson_PyParse | train |
8ce7e71a223cbbd48d7547d69daebb96c8102b87 | diff --git a/src/main/java/tachyon/CommonUtils.java b/src/main/java/tachyon/CommonUtils.java
index <HASH>..<HASH> 100644
--- a/src/main/java/tachyon/CommonUtils.java
+++ b/src/main/java/tachyon/CommonUtils.java
@@ -1,5 +1,6 @@
package tachyon;
+import java.io.IOException;
import java.nio.ByteBuffer;
import java.te... | fix a cleanpath non-pointer exception bug. | Alluxio_alluxio | train |
2ea77ec5eeea2351de50b268994ba69f876b815c | diff --git a/lib/coveralls/api.rb b/lib/coveralls/api.rb
index <HASH>..<HASH> 100644
--- a/lib/coveralls/api.rb
+++ b/lib/coveralls/api.rb
@@ -20,7 +20,7 @@ module Coveralls
Coveralls::Output.puts("#{ JSON.pretty_generate(hash) }", :color => "green") if ENV['COVERALLS_DEBUG']
hash = apified_hash hash
... | swap SSL<I> for TLSv1
version bump | lemurheavy_coveralls-ruby | train |
33245c8f83e854b4eef0e562ae4c64ddbd213c62 | diff --git a/base.php b/base.php
index <HASH>..<HASH> 100644
--- a/base.php
+++ b/base.php
@@ -2055,12 +2055,28 @@ final class Base extends Prefab implements ArrayAccess {
$_SERVER['SERVER_NAME']=gethostname();
if (PHP_SAPI=='cli') {
// Emulate HTTP request
- if (isset($_SERVER['argc']) && $_SERVER['argc']... | NEW: console-friendly CLI mode (#<I>) | bcosca_fatfree-core | train |
06c4937cb555870b7c929c0692437b9e33aa7fe7 | diff --git a/bin/jade.js b/bin/jade.js
index <HASH>..<HASH> 100755
--- a/bin/jade.js
+++ b/bin/jade.js
@@ -190,19 +190,11 @@ function renderFile(path) {
var dir = resolve(dirname(path));
mkdirp(dir, 0755, function(err){
if (err) throw err;
- try {
- var output = options.... | Remove another now-useless special exception handling for watch mode
I have already removed two in <I>b<I>e<I>e<I>f<I>aae<I>e8d9ca<I>e0b<I>. | pugjs_then-pug | train |
9676e864f0d37f852ff6c6ba3f99e1b7b134e135 | diff --git a/molgenis-data-import/src/main/java/org/molgenis/data/importer/OptionsWizardPage.java b/molgenis-data-import/src/main/java/org/molgenis/data/importer/OptionsWizardPage.java
index <HASH>..<HASH> 100644
--- a/molgenis-data-import/src/main/java/org/molgenis/data/importer/OptionsWizardPage.java
+++ b/molgenis-d... | fix: Some imported VCF files report errors in data explorer #<I> | molgenis_molgenis | train |
09af5972ebdc5698feda2d3e139dea0723bd8e87 | diff --git a/cmd_build.go b/cmd_build.go
index <HASH>..<HASH> 100644
--- a/cmd_build.go
+++ b/cmd_build.go
@@ -921,7 +921,7 @@ func (cto *createTemplateOp) Invoke(ctx context.Context, logger *zerolog.Logger)
// TODO - turn this into a Parameter block with defaults...
if nil != cto.userdata.s3SiteContext.s3Site {
... | Ensure S3 site uses proper binary name | mweagle_Sparta | train |
69264490c276058217c4ffd669ba722db0f96ff4 | diff --git a/packages/openneuro-server/datalad/__tests__/dataset.spec.js b/packages/openneuro-server/datalad/__tests__/dataset.spec.js
index <HASH>..<HASH> 100644
--- a/packages/openneuro-server/datalad/__tests__/dataset.spec.js
+++ b/packages/openneuro-server/datalad/__tests__/dataset.spec.js
@@ -51,7 +51,7 @@ describ... | Server: Fix minor issue in dataset snapshot creation test. | OpenNeuroOrg_openneuro | train |
558625b30a79d15656d49714bbb53a06e3c4e62c | diff --git a/public/js/clients/firefox.js b/public/js/clients/firefox.js
index <HASH>..<HASH> 100644
--- a/public/js/clients/firefox.js
+++ b/public/js/clients/firefox.js
@@ -109,7 +109,7 @@ function initPage(actions) {
// makes the server iterate over them and fire individual
// `newSource` notifications. We don... | update bootstrap to block on sources loading (#<I>) | firefox-devtools_debugger | train |
4ed831ca74098cd228d5f792e8ca10ff8317b9ae | diff --git a/Bundle/SeoBundle/Repository/HttpErrorRepository.php b/Bundle/SeoBundle/Repository/HttpErrorRepository.php
index <HASH>..<HASH> 100644
--- a/Bundle/SeoBundle/Repository/HttpErrorRepository.php
+++ b/Bundle/SeoBundle/Repository/HttpErrorRepository.php
@@ -5,6 +5,7 @@ namespace Victoire\Bundle\SeoBundle\Repos... | add new methods to fetch <I> errors by type | Victoire_victoire | train |
d213d25a493550a035e13482dc97fcca3a5d3061 | diff --git a/src/Behat/Mink/Element/NodeElement.php b/src/Behat/Mink/Element/NodeElement.php
index <HASH>..<HASH> 100644
--- a/src/Behat/Mink/Element/NodeElement.php
+++ b/src/Behat/Mink/Element/NodeElement.php
@@ -168,7 +168,9 @@ class NodeElement extends TraversableElement
return;
}
- $... | fixed literal escaping in select option finding | minkphp_Mink | train |
feec6820fe2f3ece26ceeea240cb0d1ff6c719d4 | diff --git a/protokube/pkg/gossip/dns/hosts/hosts.go b/protokube/pkg/gossip/dns/hosts/hosts.go
index <HASH>..<HASH> 100644
--- a/protokube/pkg/gossip/dns/hosts/hosts.go
+++ b/protokube/pkg/gossip/dns/hosts/hosts.go
@@ -20,11 +20,13 @@ import (
"bytes"
"fmt"
"io/ioutil"
+ math_rand "math/rand"
"os"
"path/filep... | Avoid concurrent write corruption to /etc/hosts
When we have multiple writers racing to write /etc/hosts, we could
have file corruption where we see a mix of both files.
We can't use a traditional atomic file write, because we are bind-mounting /etc/hosts.
Instead we write to /etc/hosts, pause, then re-read the cont... | kubernetes_kops | train |
0219d61af5067b064983e1c48241580949fd9817 | diff --git a/src/Entity/Crossword.php b/src/Entity/Crossword.php
index <HASH>..<HASH> 100644
--- a/src/Entity/Crossword.php
+++ b/src/Entity/Crossword.php
@@ -8,6 +8,7 @@ use Doctrine\ORM\Mapping\PrePersist;
use Doctrine\ORM\Mapping\PreUpdate;
use PlaygroundGame\Entity\Game;
+use Gedmo\Mapping\Annotation as Gedmo;
... | size of the crossword is translatable | gregorybesson_PlaygroundGame | train |
339618abf2d2f941addac4597fae25fab4d9a3e0 | diff --git a/claripy/simplifications.py b/claripy/simplifications.py
index <HASH>..<HASH> 100644
--- a/claripy/simplifications.py
+++ b/claripy/simplifications.py
@@ -605,9 +605,6 @@ class SimplificationManager:
if body.op == 'Not':
return body.args[0]
- if body.op == 'If':
- r... | Remove incorrect Not(If()) simplification; closes angr/angr#<I> | angr_claripy | train |
f8bdd43f518e625914f6dd2bfa9e282a60389753 | diff --git a/test/unit/_bootstrap.js b/test/unit/_bootstrap.js
index <HASH>..<HASH> 100644
--- a/test/unit/_bootstrap.js
+++ b/test/unit/_bootstrap.js
@@ -7,6 +7,10 @@ var chai = require('chai'),
chai.use(sinonChai);
+global.nobrowser = function (it) {
+ return (typeof window === 'undefined' ? it : it.skip);
+}... | Prevented the assertion async tests from running in browser (since setTimeout is not supported)
In the process, cleaned the way of specifying `nobrowser` | postmanlabs_postman-sandbox | train |
b88ce147115baf5379bf7dbfbf432ec058f7dca1 | diff --git a/packages/micro-journeys/src/interactive-pathways.js b/packages/micro-journeys/src/interactive-pathways.js
index <HASH>..<HASH> 100644
--- a/packages/micro-journeys/src/interactive-pathways.js
+++ b/packages/micro-journeys/src/interactive-pathways.js
@@ -29,11 +29,14 @@ class BoltInteractivePathways extends... | fix(micro-journeys): pathways should wait for children | bolt-design-system_bolt | train |
6f49cad3075d7a2b4b8ad246838d7528065ceee9 | diff --git a/src/Case.js b/src/Case.js
index <HASH>..<HASH> 100644
--- a/src/Case.js
+++ b/src/Case.js
@@ -80,9 +80,9 @@
},
Case = {
_: _,
- of: function(s) {
+ of: function(s, arg2) {
for (var i=0,m=_.types.length; i<m; i++) {
- if (Case[_.types[i]](s) === s... | fixes #<I> - Case.of and toSentenceCase should support passing proper names | nbubna_Case | train |
8726ade31036904b5c6f8778b816ec622882b73b | diff --git a/src/Symfony/Bundle/TwigBundle/Command/LintCommand.php b/src/Symfony/Bundle/TwigBundle/Command/LintCommand.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Bundle/TwigBundle/Command/LintCommand.php
+++ b/src/Symfony/Bundle/TwigBundle/Command/LintCommand.php
@@ -14,6 +14,7 @@ namespace Symfony\Bundle\TwigBu... | Adds more features to twig:lint command | symfony_symfony | train |
3cb40ecfb885386982fa3452eb8001051908c81a | diff --git a/TYPO3.TYPO3CR/Classes/FLOW3/Persistence/F3_TYPO3CR_FLOW3_Persistence_Query.php b/TYPO3.TYPO3CR/Classes/FLOW3/Persistence/F3_TYPO3CR_FLOW3_Persistence_Query.php
index <HASH>..<HASH> 100644
--- a/TYPO3.TYPO3CR/Classes/FLOW3/Persistence/F3_TYPO3CR_FLOW3_Persistence_Query.php
+++ b/TYPO3.TYPO3CR/Classes/FLOW3/... | TYPO3, TYPO3CR:
* two fixes for bugs following the component factory refactoring
Original-Commit-Hash: 1bea<I>f<I>aabd3c<I>d<I>c<I>d<I>c<I> | neos_neos-development-collection | train |
4715f414f56d6f571cff107e932da6d4a5e8560d | diff --git a/capsule/src/main/java/Capsule.java b/capsule/src/main/java/Capsule.java
index <HASH>..<HASH> 100644
--- a/capsule/src/main/java/Capsule.java
+++ b/capsule/src/main/java/Capsule.java
@@ -83,8 +83,6 @@ import static java.util.Arrays.asList;
import javax.management.MBeanServerConnection;
import javax.manage... | use management agent for JMX (disabled)
This does not prevent the app from shutting down (unlike manually
starting our own JMXConnectorServer). | puniverse_capsule | train |
a493cf8542c55007edfec2926ef46175c529daa0 | diff --git a/src/back/index.js b/src/back/index.js
index <HASH>..<HASH> 100644
--- a/src/back/index.js
+++ b/src/back/index.js
@@ -1,6 +1,6 @@
var models = require('./models');
var adapters = require('./adapters');
-var settings = require('./settings')
+var settings = require('./settings');
/**
* Contains all back... | Fixes lint issues. | back4app_back4app-entity | train |
ab29ac0e5115b7a6f098e476f8851931f4e51779 | diff --git a/src/Psalm/Internal/Analyzer/Statements/EchoAnalyzer.php b/src/Psalm/Internal/Analyzer/Statements/EchoAnalyzer.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Internal/Analyzer/Statements/EchoAnalyzer.php
+++ b/src/Psalm/Internal/Analyzer/Statements/EchoAnalyzer.php
@@ -37,7 +37,7 @@ class EchoAnalyzer
... | Only cast in echo when tracking taints | vimeo_psalm | train |
07997731e078db10068af6db67d4cfb95004e63f | diff --git a/pandas/tests/io/test_sql.py b/pandas/tests/io/test_sql.py
index <HASH>..<HASH> 100644
--- a/pandas/tests/io/test_sql.py
+++ b/pandas/tests/io/test_sql.py
@@ -186,12 +186,6 @@ SQL_STRINGS = {
"mysql": "SELECT * FROM iris WHERE `Name` LIKE '%'",
"postgresql": "SELECT * FROM iris WHERE \"Nam... | TST: refactor iris_view table in SQL test (#<I>) | pandas-dev_pandas | train |
b946cbd56ff7c35019fd36086d6be46677510fc8 | diff --git a/reformulation-core/src/main/java/org/semanticweb/ontop/owlrefplatform/core/unfolding/PredicateLevelProposalImpl.java b/reformulation-core/src/main/java/org/semanticweb/ontop/owlrefplatform/core/unfolding/PredicateLevelProposalImpl.java
index <HASH>..<HASH> 100644
--- a/reformulation-core/src/main/java/org/... | Fixes the case where some predicates have no definition (semantic index mode). | ontop_ontop | train |
90f25f339e74bd75b4467a7bfc4bb05759cb55ef | diff --git a/lib/cinch/plugin.rb b/lib/cinch/plugin.rb
index <HASH>..<HASH> 100644
--- a/lib/cinch/plugin.rb
+++ b/lib/cinch/plugin.rb
@@ -1,15 +1,19 @@
module Cinch
class Plugin
class << self
- # Set the match pattern.
+ Pattern = Struct.new(:pattern, :use_prefix, :method)
+ # Set a match patte... | allow for more than one match pattern per plugin | cinchrb_cinch | train |
3c1b05683dc420dab111b0a1c1ce015238f41211 | diff --git a/src/scs_core/particulate/exegesis/exegete.py b/src/scs_core/particulate/exegesis/exegete.py
index <HASH>..<HASH> 100644
--- a/src/scs_core/particulate/exegesis/exegete.py
+++ b/src/scs_core/particulate/exegesis/exegete.py
@@ -3,7 +3,7 @@ Created on 26 Oct 2019
@author: Bruno Beloff (bruno.beloff@southco... | Added particle exegesis framework. | south-coast-science_scs_core | train |
2ae54583f040587e1e72853ec39dcf6f0ebf9a18 | diff --git a/test/Resque/Tests/bootstrap.php b/test/Resque/Tests/bootstrap.php
index <HASH>..<HASH> 100644
--- a/test/Resque/Tests/bootstrap.php
+++ b/test/Resque/Tests/bootstrap.php
@@ -30,6 +30,7 @@ if($returnVar != 0) {
}
exec('cd ' . TEST_MISC . '; redis-server ' . REDIS_CONF, $output, $returnVar);
+usleep(5000... | Fixes unit test reliability
- redis-server is killed only from parent process, not from a worker
- sleeps for half a second after starting server | wa0x6e_php-resque-ex | train |
33c432c90552d3517d0e2c2fc61f259e88dc30c0 | diff --git a/vendor/plugins/pages/app/models/page.rb b/vendor/plugins/pages/app/models/page.rb
index <HASH>..<HASH> 100644
--- a/vendor/plugins/pages/app/models/page.rb
+++ b/vendor/plugins/pages/app/models/page.rb
@@ -4,7 +4,7 @@ class Page < ActiveRecord::Base
acts_as_tree :order => "position"
- has_frien... | Friendly ids should strip diacritics and use slugs for pages and page parts. This commit resolves that issue. | refinery_refinerycms | train |
1d1c5e1ba8f415bba3f5745af7cbb9c21aaf662f | diff --git a/lib/shoulda.rb b/lib/shoulda.rb
index <HASH>..<HASH> 100644
--- a/lib/shoulda.rb
+++ b/lib/shoulda.rb
@@ -13,7 +13,6 @@ module Test # :nodoc: all
end
end
-require 'shoulda/private_helpers'
require 'shoulda/general'
require 'shoulda/active_record'
require 'shoulda/controller'
diff --git a/lib/shoul... | Moved include of Private helpers from AR::Macros to general Macros | thoughtbot_shoulda-matchers | train |
d5ea153b93f24f57006ce0ee8f99c06e7ccaf8ac | diff --git a/lib/csv_record/callbacks.rb b/lib/csv_record/callbacks.rb
index <HASH>..<HASH> 100644
--- a/lib/csv_record/callbacks.rb
+++ b/lib/csv_record/callbacks.rb
@@ -50,6 +50,13 @@ module CsvRecord
is_valid
end
+ def save(*args)
+ self.run_before_save_callbacks
+ is_saved = sup... | Adding the before & after save callbacks | lukelex_csv_record | train |
a1cb4c0020893e0876f4d3f202c6b65017070bfb | diff --git a/webwhatsapi/js/wapi.js b/webwhatsapi/js/wapi.js
index <HASH>..<HASH> 100755
--- a/webwhatsapi/js/wapi.js
+++ b/webwhatsapi/js/wapi.js
@@ -369,12 +369,14 @@ window.WAPI.sendMessageToID = function (id, message, done) {
if(Store.Chat.models.length == 0)
return false;
- Store.Chat.models[0].... | Revert recipient ID to original after sending message | mukulhase_WebWhatsapp-Wrapper | train |
a44a27456cdc7810545489809089536f382f2f18 | diff --git a/lib/active_scaffold/extensions/action_controller_rendering.rb b/lib/active_scaffold/extensions/action_controller_rendering.rb
index <HASH>..<HASH> 100644
--- a/lib/active_scaffold/extensions/action_controller_rendering.rb
+++ b/lib/active_scaffold/extensions/action_controller_rendering.rb
@@ -2,7 +2,7 @@
... | fix loading inline action links in a new window | activescaffold_active_scaffold | train |
d0fd8d6fc29ec859650adf30718e2b06786e854f | diff --git a/common/hexutil/hexutil.go b/common/hexutil/hexutil.go
index <HASH>..<HASH> 100644
--- a/common/hexutil/hexutil.go
+++ b/common/hexutil/hexutil.go
@@ -39,6 +39,7 @@ import (
const uintBits = 32 << (uint64(^uint(0)) >> 63)
+// Errors
var (
ErrEmptyString = &decError{"empty hex string"}
ErrSyntax ... | common: all golint warnings removed (#<I>)
* common: all golint warnings removed
* common: fixups | ethereum_go-ethereum | train |
d5ff235875d52a9abcfec1a14929b854af40f1b4 | diff --git a/core/src/main/java/org/infinispan/eviction/impl/ActivationManagerImpl.java b/core/src/main/java/org/infinispan/eviction/impl/ActivationManagerImpl.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/infinispan/eviction/impl/ActivationManagerImpl.java
+++ b/core/src/main/java/org/infinispan/evicti... | ISPN-<I> Remove entries from all stored on entry removal | infinispan_infinispan | train |
9fdd1cbf4343e4b791b4d97c79c2616ee7832cde | diff --git a/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleAgent.java b/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleAgent.java
index <HASH>..<HASH> 100644
--- a/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleAgent.java
+++ b/aeron-cluster/src/main/java/io/aeron/cluster/Consens... | [Java] Log archive error due to storage space before termination when starting to record cluster log. | real-logic_aeron | train |
0d95987055c87bc2247b1c1d8dd6db4fef5e71d6 | diff --git a/lib/routeparam.js b/lib/routeparam.js
index <HASH>..<HASH> 100644
--- a/lib/routeparam.js
+++ b/lib/routeparam.js
@@ -27,6 +27,9 @@ exports.options = {
}
}
exports.newDocletHandler = function (e) {
+ if (e.doclet.kind !== "member")
+ return;
+
const parameters = e.doclet.params
if (paramet... | now routeparam handler should react only on routes | vmarchaud_jsdoc-http-plugin | train |
240b0d7d45005a3faaf701e9095172888dc48ce4 | diff --git a/rules/predicates.py b/rules/predicates.py
index <HASH>..<HASH> 100644
--- a/rules/predicates.py
+++ b/rules/predicates.py
@@ -298,8 +298,8 @@ def is_group_member(*groups):
def fn(user):
if not hasattr(user, 'groups'):
return False # swapped user model, doesn't support groups
- ... | Fixed undesired caching in `is_group_member` factory
Fixes #<I> | dfunckt_django-rules | train |
79d359839506a8417cf719a2633e09f4991d768e | diff --git a/packages/ember-runtime/lib/ext/rsvp.js b/packages/ember-runtime/lib/ext/rsvp.js
index <HASH>..<HASH> 100644
--- a/packages/ember-runtime/lib/ext/rsvp.js
+++ b/packages/ember-runtime/lib/ext/rsvp.js
@@ -69,7 +69,6 @@ RSVP.onerrorDefault = function (e) {
Ember.onerror(error);
} else {
Logg... | [BUGFIX beta] Don’t assert uncaught RSVP rejections
Fixes #<I>.
We already loudly log a stack trace, and the assert
ends up breaking everything else on the run loop
queue and given that it doesn’t even preserve a
meaningful stack trace related to the source of
error, it doesn’t add a lot of value (and causes
real pro... | emberjs_ember.js | train |
e21cd5d6f9faa230a5b3998facc61f52f31e5b25 | diff --git a/Command/LoadFixtureCommand.php b/Command/LoadFixtureCommand.php
index <HASH>..<HASH> 100644
--- a/Command/LoadFixtureCommand.php
+++ b/Command/LoadFixtureCommand.php
@@ -91,7 +91,7 @@ EOT
$input->getOption('session')
);
- $dm = $this->getHelperSet()->get('phpcr');
+ $d... | Fixed LoadFixtureCommand | doctrine_DoctrinePHPCRBundle | train |
40fbb6e16d17dfac7ace78e49b9ce570ceecd2c4 | diff --git a/lib/functions.php b/lib/functions.php
index <HASH>..<HASH> 100644
--- a/lib/functions.php
+++ b/lib/functions.php
@@ -527,7 +527,7 @@ function wait(Promise $promise, Reactor $reactor = null) {
*/
function coroutine(callable $func, Reactor $reactor = null) {
return function() use ($func, $reactor) {... | Minor coroutine refactoring/optimization; add makeGeneratorError() | amphp_amp | train |
11b40dcbeab660f599c49e0dd9e00937795d70bf | diff --git a/src/Select.js b/src/Select.js
index <HASH>..<HASH> 100644
--- a/src/Select.js
+++ b/src/Select.js
@@ -801,6 +801,24 @@ const Select = React.createClass({
}
},
+ renderOuter (options, valueArray, focusedOption) {
+ let menu = this.renderMenu(options, valueArray, focusedOption);
+ if (!menu) {
+ r... | Does not render outer when it does not contain anything | HubSpot_react-select-plus | train |
9a377ddcd3f127603d4170e3704431a890c726f1 | diff --git a/tensorflow_probability/python/sts/local_level.py b/tensorflow_probability/python/sts/local_level.py
index <HASH>..<HASH> 100644
--- a/tensorflow_probability/python/sts/local_level.py
+++ b/tensorflow_probability/python/sts/local_level.py
@@ -297,14 +297,13 @@ class LocalLevel(StructuralTimeSeries):
... | Fix bug in which necessary stats were not computed when both a level_scale_prior and initial_level_prior were specified for a LocalLevel model.
PiperOrigin-RevId: <I> | tensorflow_probability | train |
b1e0c157df9cc1d8f6a17e5416c316e64a75840f | diff --git a/lib/mongo/error/operation_failure.rb b/lib/mongo/error/operation_failure.rb
index <HASH>..<HASH> 100644
--- a/lib/mongo/error/operation_failure.rb
+++ b/lib/mongo/error/operation_failure.rb
@@ -71,6 +71,8 @@ module Mongo
def_delegators :@result, :operation_time
+ # @!method connection_descr... | RUBY-<I> fix connection_description docstring | mongodb_mongo-ruby-driver | train |
d6f92d422406bbdcfc5ee6cb3472b16f6627a657 | diff --git a/main.go b/main.go
index <HASH>..<HASH> 100644
--- a/main.go
+++ b/main.go
@@ -84,6 +84,7 @@ func main() {
applyOp := func(op interface{}) error {
var result interface{}
+ session.Refresh()
if err := session.Run(bson.M{"applyOps": []interface{}{op}}, &result); err != nil {
return err
} | call Refresh() before applying an op
I don't really understand why this is necessary, but it resolved
problems I was seeing with large #s of ops
<URL> | Clever_ARCHIVED-oplog-replay | train |
0cb49edd9bd9c90f54449abdf2efc7d2efdb97b3 | diff --git a/charset.go b/charset.go
index <HASH>..<HASH> 100644
--- a/charset.go
+++ b/charset.go
@@ -25,7 +25,12 @@ type Glyph struct {
func (g *Glyph) GetTexturePositions(font FontLike) (tP1, tP2 Point) {
// Quad width/height
- vw := float32(g.Width)
+
+ // Originally the ttf width value was being used. This, ... | During TTF glyph preparation, a width, height, and advance value are
created. It seems to me that quad positioning of the rune should rely
on advance width rather than width so I have done just that. It is
possible that I am not understanding something about how TTF works. If
so, this is easy enough to revert. | 4ydx_gltext | train |
b6a79a5a2e02bfd7fb2b74f9279367382b6d603a | diff --git a/lib/assertions.js b/lib/assertions.js
index <HASH>..<HASH> 100644
--- a/lib/assertions.js
+++ b/lib/assertions.js
@@ -131,7 +131,8 @@ module.exports = function (expect) {
});
} else if (properties && typeof properties === 'object') {
// TODO the not flag does not make a l... | Store flags for diff in to have properties assertion | unexpectedjs_unexpected | train |
85a71c42346f1acc75e054c606c975bd8e0ca397 | diff --git a/src/components/timeslider/timeslider.js b/src/components/timeslider/timeslider.js
index <HASH>..<HASH> 100644
--- a/src/components/timeslider/timeslider.js
+++ b/src/components/timeslider/timeslider.js
@@ -186,7 +186,7 @@ var TimeSlider = Component.extend({
//Slide
this.slide.call(this.brush);
... | Issue #<I>: Block page scrolling when dragging
Remove whitespace and add style fix. | vizabi_vizabi | train |
da064e2ede7cc041ac16842b6993d88b18743da0 | diff --git a/dvc/analytics.py b/dvc/analytics.py
index <HASH>..<HASH> 100644
--- a/dvc/analytics.py
+++ b/dvc/analytics.py
@@ -81,12 +81,21 @@ def is_enabled():
def send(report):
+ """
+ Side effect: Removes the report after sending it.
+
+ The report is generated and stored in a temporary file, see:
+ ... | analytics: remove the report after sending it | iterative_dvc | train |
e62e5b032d100c1078e88022b872759e63f13465 | diff --git a/lib/fiatrateservice.js b/lib/fiatrateservice.js
index <HASH>..<HASH> 100644
--- a/lib/fiatrateservice.js
+++ b/lib/fiatrateservice.js
@@ -119,6 +119,7 @@ FiatRateService.prototype.getRate = function(code, opts, cb) {
return cb(null, {
ts: +ts,
rate: rate ? rate.value : undefined,
+... | add fetchedOn to returned rates | bitpay_bitcore-wallet-service | train |
5da25ac192731eb10bd6e5dd0be9c6be4dae0946 | diff --git a/test/test_jsonschema_draft3.rb b/test/test_jsonschema_draft3.rb
index <HASH>..<HASH> 100644
--- a/test/test_jsonschema_draft3.rb
+++ b/test/test_jsonschema_draft3.rb
@@ -107,7 +107,7 @@ class JSONSchemaDraft3Test < Test::Unit::TestCase
data['a'] = true
assert(!JSON::Validator.validate(schema,data... | Fixing test fat-finger. Thanks @myronmarston! | ruby-json-schema_json-schema | train |
c92792f808f13e06af2f69ccb5567226107799b4 | diff --git a/bcbio/rnaseq/sailfish.py b/bcbio/rnaseq/sailfish.py
index <HASH>..<HASH> 100644
--- a/bcbio/rnaseq/sailfish.py
+++ b/bcbio/rnaseq/sailfish.py
@@ -45,6 +45,7 @@ def sailfish(fq1, fq2, align_dir, gtf_file, ref_file, strandedness, data):
fq2_cmd = "{fq2}" if not is_gzipped(fq2) else "<(gzip -cd {fq2}... | Run Sailfish bootstraps for use with Sleuth. | bcbio_bcbio-nextgen | train |
b70b628c9e4b4ac16e899ced78089027122cb15b | diff --git a/open511/validator/__init__.py b/open511/validator/__init__.py
index <HASH>..<HASH> 100644
--- a/open511/validator/__init__.py
+++ b/open511/validator/__init__.py
@@ -13,9 +13,16 @@ RELAXNG_LXML = etree.RelaxNG(etree.parse(RELAXNG_PATH))
SCHEMATRON_LXML = isoschematron.Schematron(etree.parse(SCHEMATRON_PAT... | Nicer error for Schematron violations | open511_open511 | train |
9ba4cef1bac8ebc8fe71123bd20cfc681fdb78a8 | diff --git a/cookie.go b/cookie.go
index <HASH>..<HASH> 100644
--- a/cookie.go
+++ b/cookie.go
@@ -31,6 +31,9 @@ const (
CookieSameSiteLaxMode
// CookieSameSiteStrictMode sets the SameSite flag with the "Strict" parameter
CookieSameSiteStrictMode
+ // CookieSameSiteNoneMode sets the SameSite flag with the "None" ... | Support SameSite value "None" cookie attribute (#<I>)
* Support SameSite value "None" cookie attribute
* Fix typo in CookieSameSiteNoneMode comment
* fix comment for SameSite None | valyala_fasthttp | train |
865750cb7273dee614219d6e9d95017339431cd6 | diff --git a/src/channel.py b/src/channel.py
index <HASH>..<HASH> 100644
--- a/src/channel.py
+++ b/src/channel.py
@@ -68,17 +68,14 @@ def cmode ( self, channel, modes = '' ):
return self.recv().split() [4]
else: self.rsend ( 'MODE ' + channel + ' ' + modes )
- while 1:
- ... | Path to cmode() and topic(). | jamieleshaw_lurklib | train |
adf7ce857d12a743df50b91f82dd94578ee28b19 | diff --git a/expression/builtin_cast_vec.go b/expression/builtin_cast_vec.go
index <HASH>..<HASH> 100644
--- a/expression/builtin_cast_vec.go
+++ b/expression/builtin_cast_vec.go
@@ -537,11 +537,48 @@ func (b *builtinCastIntAsDecimalSig) vecEvalDecimal(input *chunk.Chunk, result *
}
func (b *builtinCastIntAsJSONSig... | expression: implement vectorized evaluation for `builtinCastIntAsJSONSig` (#<I>) | pingcap_tidb | train |
ba22e56262d6761f3fbd25652b906c3c9802bf92 | diff --git a/server/camlistored/ui/camli.js b/server/camlistored/ui/camli.js
index <HASH>..<HASH> 100644
--- a/server/camlistored/ui/camli.js
+++ b/server/camlistored/ui/camli.js
@@ -241,12 +241,12 @@ function camliUploadFileHelper(file, contentsBlobRef, opts) {
function camliUploadString(s, opts) {
opts = saneOp... | Conform to W3C File API
Replace WebKitBlobBuilder with Blob() interface implementation of web browser.
Make it working on Firefox as well.
Change-Id: I3b7e<I>dbba3aff6b3f3d<I>f<I>af<I>ab8 | perkeep_perkeep | train |
486e41a792f571a03e67f7074b08d1596dffe6b7 | diff --git a/distutilazy/clean.py b/distutilazy/clean.py
index <HASH>..<HASH> 100644
--- a/distutilazy/clean.py
+++ b/distutilazy/clean.py
@@ -19,7 +19,7 @@ from distutils.command import clean
from . import util
-__version__ = "0.3.0"
+__version__ = "0.4.0"
class clean_pyc(Command):
description = """Clean ... | clean_pyc command class cleans Python cached directories | farzadghanei_distutilazy | train |
e8e9bc15f62baaa1b469a7f97c1c2fe8bbe81ccb | diff --git a/src/main/java/eu/interedition/collatex/rest/BeckettResource.java b/src/main/java/eu/interedition/collatex/rest/BeckettResource.java
index <HASH>..<HASH> 100644
--- a/src/main/java/eu/interedition/collatex/rest/BeckettResource.java
+++ b/src/main/java/eu/interedition/collatex/rest/BeckettResource.java
@@ -3... | [RHD] Beckett resource added extra witnesses. | interedition_collatex | train |
9ee625bac02fcd98e8bd57fc915a9933aa13392e | diff --git a/src/Yubikey.php b/src/Yubikey.php
index <HASH>..<HASH> 100644
--- a/src/Yubikey.php
+++ b/src/Yubikey.php
@@ -632,7 +632,7 @@ class Yubikey {
* @param int $num
* @return string
*/
- protected static function randomBytes($num = 16)
+ protected static function getRandomBytes($num = 16)
{
static... | Renamed randomBytes to getRandomBytes | bitbeans_Yubikey | train |
e3b452eaf6d21984e44be51161fd57ec4c443777 | diff --git a/src/ci.js b/src/ci.js
index <HASH>..<HASH> 100644
--- a/src/ci.js
+++ b/src/ci.js
@@ -3,5 +3,5 @@ export default function (services, chosenService, options) {
if (service) return service.scaffolder(options);
- return undefined;
+ return {};
}
diff --git a/test/unit/ci-test.js b/test/unit/ci-test.... | fix(ci): returned an empty object for `Other`
since later code assumes at least an object to be returned | travi_javascript-scaffolder | train |
1061122917e5839bc18bc12b34261533d61c8276 | diff --git a/lib/capybara/selenium/extensions/find.rb b/lib/capybara/selenium/extensions/find.rb
index <HASH>..<HASH> 100644
--- a/lib/capybara/selenium/extensions/find.rb
+++ b/lib/capybara/selenium/extensions/find.rb
@@ -33,7 +33,7 @@ module Capybara
var texts = arguments[1]
return arguments[0].... | IE doesn't provide String.prototype.includes - and other IE updates | teamcapybara_capybara | train |
7bc48f9fbf60fdb627e2db16e8e8bdb1551b8110 | diff --git a/arpy/hamming_marker.py b/arpy/hamming_marker.py
index <HASH>..<HASH> 100644
--- a/arpy/hamming_marker.py
+++ b/arpy/hamming_marker.py
@@ -3,6 +3,7 @@ import cv2
from numpy import array, mean, binary_repr, zeros
from numpy.random import randint
from scipy.ndimage import zoom
+from PIL import Image
fro... | Use a very dirty fix to use PIL for rescaling instead of scipy (zoom function seems to have changed). | pierre-rouanet_hampy | train |
ba755806cd518809d24968d89d51f64d8d6fdf4c | diff --git a/salt/minion.py b/salt/minion.py
index <HASH>..<HASH> 100644
--- a/salt/minion.py
+++ b/salt/minion.py
@@ -19,7 +19,11 @@ import sys
import signal
# Import third party libs
-import zmq
+try:
+ import zmq
+except:
+ # Running in local, zmq not needed
+ pass
import yaml
HAS_RANGE = False | Allow zmq-less deployment | saltstack_salt | train |
5c925673617d0d6277711a0ea1d51c5c5d31ecc1 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -15,14 +15,6 @@ module.exports = {
getConfig: function() {
var brocfileConfig = {};
- if (!!this.app) {
- if (!!this.app.options.coffeeOptions) {
- console.log(chalk.yellow("Passing in coffeeOptions fr... | Remove deprecated config warning.
This will not work in <I>.x, and was already slated to be removed... | kimroen_ember-cli-coffeescript | train |
0b285b1817c0c52c8e32e64e22dbcf6c9fe70121 | diff --git a/lib/assertions.js b/lib/assertions.js
index <HASH>..<HASH> 100644
--- a/lib/assertions.js
+++ b/lib/assertions.js
@@ -786,13 +786,13 @@ module.exports = function (expect) {
}
});
- function wrapDiffWithTypePrefixAndSuffix(e, type) {
+ function wrapDiffWithTypePrefixAndSuffix(e, type, ... | Fixed: Provide context for type.prefix and type.suffix | unexpectedjs_unexpected | train |
70508a8fa01c8770ba5fd37cec0b79c4f9eda0ba | diff --git a/de.tudarmstadt.ukp.wikipedia.timemachine/src/main/java/de/tudarmstadt/ukp/wikipedia/timemachine/domain/Revision.java b/de.tudarmstadt.ukp.wikipedia.timemachine/src/main/java/de/tudarmstadt/ukp/wikipedia/timemachine/domain/Revision.java
index <HASH>..<HASH> 100755
--- a/de.tudarmstadt.ukp.wikipedia.timemach... | No issue. Fix JavaDoc. | dkpro_dkpro-jwpl | train |
baccdb4cfc241cbcfd02d21aada56100c6c9c132 | diff --git a/lib/handlebars/base.js b/lib/handlebars/base.js
index <HASH>..<HASH> 100644
--- a/lib/handlebars/base.js
+++ b/lib/handlebars/base.js
@@ -7,11 +7,12 @@ var Handlebars = {};
// BEGIN(BROWSER)
Handlebars.VERSION = "1.0.0-rc.3";
-Handlebars.COMPILER_REVISION = 2;
+Handlebars.COMPILER_REVISION = 3;
Hand... | Add program metadata
Include program id and depth on the generated wrapper objects. This
allows helpers who are passed these objects to differentiate between
helpers for cases where they may want to cache the generated DOM
structure. | wycats_handlebars.js | train |
887f2338cb9d59cb361c3e83cc3d91100a3c7421 | diff --git a/Tests/Unit/Controller/Ajax/AbstractPageSeoControllerTest.php b/Tests/Unit/Controller/Ajax/AbstractPageSeoControllerTest.php
index <HASH>..<HASH> 100644
--- a/Tests/Unit/Controller/Ajax/AbstractPageSeoControllerTest.php
+++ b/Tests/Unit/Controller/Ajax/AbstractPageSeoControllerTest.php
@@ -214,7 +214,12 @@ ... | [BUGFIX] Testsuite failed permission check
Fixes #<I>
Issue #<I> | webdevops_TYPO3-metaseo | train |
74b84d00b38e81a00d105d4755919c3710afd05d | diff --git a/integration-cli/docker_cli_inspect_test.go b/integration-cli/docker_cli_inspect_test.go
index <HASH>..<HASH> 100644
--- a/integration-cli/docker_cli_inspect_test.go
+++ b/integration-cli/docker_cli_inspect_test.go
@@ -42,8 +42,7 @@ func (s *DockerCLIInspectSuite) TestInspectImage(c *testing.T) {
// fails... | integration-cli: add utility to check if snapshotters are enabled | moby_moby | train |
3f48b606821395826b8c85acfe7d8be47ab2ae69 | diff --git a/cli.js b/cli.js
index <HASH>..<HASH> 100755
--- a/cli.js
+++ b/cli.js
@@ -5,24 +5,14 @@ const meow = require('meow')
const findup = require('find-up')
const readPkg = require('read-pkg-up').sync
const openBrowser = require('react-dev-utils/openBrowser')
+const log = require('@compositor/log')
const cha... | Use c8r/log for cli | c8r_x0 | train |
b0865aa0e94fa4395e495af2621e9c707e78e604 | diff --git a/utils/babel-preset-app/polyfills.js b/utils/babel-preset-app/polyfills.js
index <HASH>..<HASH> 100644
--- a/utils/babel-preset-app/polyfills.js
+++ b/utils/babel-preset-app/polyfills.js
@@ -1,6 +1,6 @@
const { addSideEffect } = require('@babel/helper-module-imports')
-// slightly modifiled from @babel/p... | chore(utils): fix typo in quasar/babel-preset-app (#<I>) | quasarframework_quasar | train |
7f03c7de5b49d75b59b1c32d336357c96c634370 | diff --git a/translator/src/main/java/com/google/devtools/j2objc/gen/StatementGenerator.java b/translator/src/main/java/com/google/devtools/j2objc/gen/StatementGenerator.java
index <HASH>..<HASH> 100644
--- a/translator/src/main/java/com/google/devtools/j2objc/gen/StatementGenerator.java
+++ b/translator/src/main/java/... | Issue <I>: fixed hang in makeQuotedString(). | google_j2objc | train |
124691c9b8112245cb86ba84ac4204428f45d643 | diff --git a/es/chain/node.js b/es/chain/node.js
index <HASH>..<HASH> 100644
--- a/es/chain/node.js
+++ b/es/chain/node.js
@@ -45,8 +45,18 @@ async function sendTransaction (tx, options = {}) {
}
}
- const { txHash } = await this.api.postTransaction({ tx })
- return waitMined ? { ...(await this.poll(txHash,... | Refactor error handling in sendTransaction (#<I>)
Fix contractCreate fee calculation | aeternity_aepp-sdk-js | train |
65301199182dfb713a8302547465253f2c17c0f3 | diff --git a/src/ol/control/ZoomSlider.js b/src/ol/control/ZoomSlider.js
index <HASH>..<HASH> 100644
--- a/src/ol/control/ZoomSlider.js
+++ b/src/ol/control/ZoomSlider.js
@@ -1,7 +1,6 @@
/**
* @module ol/control/ZoomSlider
*/
-import {inherits} from '../util.js';
import ViewHint from '../ViewHint.js';
import Con... | Use extends and super for control/ZoomSlider | openlayers_openlayers | train |
ff6414c64b03a5b170da9b97d80d949f28ffc742 | diff --git a/quart/datastructures.py b/quart/datastructures.py
index <HASH>..<HASH> 100644
--- a/quart/datastructures.py
+++ b/quart/datastructures.py
@@ -128,6 +128,7 @@ class Authorization:
class AcceptOption(NamedTuple):
value: str
quality: float
+ parameters: dict
class Accept:
@@ -136,21 +137,18... | Bugfix make params available in Accept options
The previous commit (ba2d<I>cadfe<I>ce7f2d<I>e8e8) would
strip them out. Note this is a different API to Werkzeug which doesn't
parse the params from the value. | pgjones_quart | train |
95085ece13847551b08a65eb1d4826a76786870b | diff --git a/lib/pseudohiki/converter.rb b/lib/pseudohiki/converter.rb
index <HASH>..<HASH> 100755
--- a/lib/pseudohiki/converter.rb
+++ b/lib/pseudohiki/converter.rb
@@ -146,10 +146,6 @@ module PseudoHiki
@formatter ||= @options.html_template.new
end
- def create_plain_table_of_contents(tree)
- @... | inline method: removed PageComposer#create_plain_table_of_contents() | nico-hn_PseudoHikiParser | train |
98ce3b08f535343d42c572da4a57770f40a6590c | diff --git a/test/copy.test.js b/test/copy.test.js
index <HASH>..<HASH> 100644
--- a/test/copy.test.js
+++ b/test/copy.test.js
@@ -9,7 +9,7 @@ var DIR = '';
describe('fs-extra', function() {
beforeEach(function(done) {
- DIR = testutil.createTempDir();
+ DIR = testutil.createTestDir('fs-extra');
done()... | Changed creation of testing diretories so the /tmp dir is not littered. | jprichardson_node-fs-extra | train |
d1fcfa43f02c41053c70e6fcd425de50e102e8ef | diff --git a/src/server/pachyderm_test.go b/src/server/pachyderm_test.go
index <HASH>..<HASH> 100644
--- a/src/server/pachyderm_test.go
+++ b/src/server/pachyderm_test.go
@@ -3174,8 +3174,8 @@ func TestPipelinePartialResourceRequest(t *testing.T) {
Cmd: []string{"true"},
},
ResourceSpec: &pps.ResourceSpec{... | Remove gpu requests since those won't pass on CI. | pachyderm_pachyderm | train |
3a78720bb475c3e73db63eb14cdbb2535a0586f6 | diff --git a/flask_application_factory/__init__.py b/flask_application_factory/__init__.py
index <HASH>..<HASH> 100644
--- a/flask_application_factory/__init__.py
+++ b/flask_application_factory/__init__.py
@@ -2,12 +2,13 @@ from .bundle import Bundle
from .factory import FlaskApplicationFactory
from .factory_hook im... | do not export de_camel at the package level, add kebab_case and snake_case instead | briancappello_flask-unchained | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.