hash stringlengths 40 40 | diff stringlengths 131 26.7k | message stringlengths 7 694 | project stringlengths 5 67 | split stringclasses 1
value | diff_languages stringlengths 2 24 |
|---|---|---|---|---|---|
75d094d1a4953a061b1decdb9bedad73a5bd0205 | diff --git a/nunaliit2-js/src/main/js/nunaliit2/tuio/tuioclient.js b/nunaliit2-js/src/main/js/nunaliit2/tuio/tuioclient.js
index <HASH>..<HASH> 100644
--- a/nunaliit2-js/src/main/js/nunaliit2/tuio/tuioclient.js
+++ b/nunaliit2-js/src/main/js/nunaliit2/tuio/tuioclient.js
@@ -496,10 +496,6 @@ function dispatchMouseEventW... | Dispatch mouseup early for more reponsive clicking | GCRC_nunaliit | train | js |
9dde205b007305c4c01aee57c631eb683b085bbb | diff --git a/clustering/infinispan/src/main/java/org/jboss/as/clustering/infinispan/LegacyGlobalConfigurationAdapter.java b/clustering/infinispan/src/main/java/org/jboss/as/clustering/infinispan/LegacyGlobalConfigurationAdapter.java
index <HASH>..<HASH> 100644
--- a/clustering/infinispan/src/main/java/org/jboss/as/clus... | AS7-<I>: When copying advancedexternalizer from the legacy configuration, use the
id coming from the externalizerconfig, since it may have been assigned
by a module lifecycle and not overridden from
AbstractExternalizer | wildfly_wildfly | train | java |
358510ad8449df2282f9321567a8f59eca5f687b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,9 @@ setup(name='spatialist',
author='John Truckenbrodt',
author_email='john.truckenbrodt@uni-jena.de',
license='MIT',
- zip_safe=False)
+ zip_safe=False,
+ long_description='an in... | [setup.py] added short description with link to github | johntruckenbrodt_spatialist | train | py |
711fe0e77a125fe466d13e74eb56a18065b58fbe | diff --git a/js/test/.eslintrc.js b/js/test/.eslintrc.js
index <HASH>..<HASH> 100644
--- a/js/test/.eslintrc.js
+++ b/js/test/.eslintrc.js
@@ -25,6 +25,7 @@ module.exports = {
"curly": "off",
"rest-spread-spacing": "off",
"no-multiple-empty-lines": "off",
+ "no-undef": "off",
"no-undef-... | removed undef rule from test/.eslintrc as it falsely complains about mocha's globally defined functions | ccxt_ccxt | train | js |
ad8cb7c812984a5736ba7ac46a83a10bc95e3659 | diff --git a/lib/bbcloud/api.rb b/lib/bbcloud/api.rb
index <HASH>..<HASH> 100644
--- a/lib/bbcloud/api.rb
+++ b/lib/bbcloud/api.rb
@@ -53,6 +53,8 @@ module Brightbox
objects = args.collect do |arg|
cached_get(arg)
end
+ elsif args.respond_to? :to_s
+ objects = [cached_get(args.t... | handle strings that don't respond to collect (as in Ruby <I>). Fixes #<I> | brightbox_brightbox-cli | train | rb |
5ec3cfc38d8ad335b7656cae8f75a4d2be20ad78 | diff --git a/geoshape/settings.py b/geoshape/settings.py
index <HASH>..<HASH> 100644
--- a/geoshape/settings.py
+++ b/geoshape/settings.py
@@ -218,9 +218,10 @@ LEAFLET_CONFIG = {
}
}
-# Absolute filesystem path to the directory that will hold user-uploaded files.
-# Used to upload schema.xsd files through gssch... | Update settings.py
added gsschema_config setting | ROGUE-JCTD_rogue_geonode | train | py |
1a1a8cfb6adbe6475263b67e3f95dcc9914dedfe | diff --git a/apostrophe.js b/apostrophe.js
index <HASH>..<HASH> 100644
--- a/apostrophe.js
+++ b/apostrophe.js
@@ -698,6 +698,7 @@ function Apos() {
if (extension && extension.length) {
extension = extension.substr(1);
}
+ extension = extension.toLowerCase();
// Do... | Here's an idea, let's accept uppercase file extensions (: | apostrophecms_apostrophe | train | js |
49b1dcc991bf9b7a2f3f33ffe9dd0de5f3ee8842 | diff --git a/test/integration/kubernetes_deploy_test.rb b/test/integration/kubernetes_deploy_test.rb
index <HASH>..<HASH> 100644
--- a/test/integration/kubernetes_deploy_test.rb
+++ b/test/integration/kubernetes_deploy_test.rb
@@ -891,7 +891,7 @@ unknown field \"myKey\" in io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMet... | Bump global timeout to fix flakey test (#<I>) | Shopify_kubernetes-deploy | train | rb |
0c79c11606b6816eeb7c41b660fff102b254978d | diff --git a/cayley.go b/cayley.go
index <HASH>..<HASH> 100644
--- a/cayley.go
+++ b/cayley.go
@@ -193,6 +193,9 @@ func load(ts graph.TripleStore, cfg *config.Config, path, typ string) error {
if path == "" {
path = cfg.DatabasePath
}
+ if path == "" {
+ return nil
+ }
u, err := url.Parse(path)
if err != ni... | Allow memstore instances to be started empty
This allows easier debugging of web UI problem. | cayleygraph_cayley | train | go |
0f4d779b00649a6b3e0d2224ee8a90afba5863b7 | diff --git a/pywb/rewrite/html_rewriter.py b/pywb/rewrite/html_rewriter.py
index <HASH>..<HASH> 100644
--- a/pywb/rewrite/html_rewriter.py
+++ b/pywb/rewrite/html_rewriter.py
@@ -109,6 +109,8 @@ class HTMLRewriterMixin(object):
# get opts from urlrewriter
self.opts = url_rewriter.rewrite_opts
+ ... | html rewrite: add 'force_html_decl' option, which if set in rewrite_opts, can be used to force an HTML decl, eg. <!DOCTYPE html> if a default one was not provided | webrecorder_pywb | train | py |
e19499dbf22db90874f0953e9093feab1edea8e2 | diff --git a/pyroma/__init__.py b/pyroma/__init__.py
index <HASH>..<HASH> 100644
--- a/pyroma/__init__.py
+++ b/pyroma/__init__.py
@@ -89,7 +89,7 @@ def main():
sys.exit(1)
modes = (options.auto, options.directory, options.file, options.pypi)
- if sum([1 if x else 0 for x in modes]) > 1:
+ if sum(... | That list isn't needed any more | regebro_pyroma | train | py |
9067328c60f265d2ee4b4da9cce90ebab69508b1 | diff --git a/src/DependencyInjection/DoctrineCacheExtension.php b/src/DependencyInjection/DoctrineCacheExtension.php
index <HASH>..<HASH> 100755
--- a/src/DependencyInjection/DoctrineCacheExtension.php
+++ b/src/DependencyInjection/DoctrineCacheExtension.php
@@ -30,4 +30,12 @@ class DoctrineCacheExtension extends Exten... | Added a alias for the config | php-cache_adapter-bundle | train | php |
f7893e750113267b58f66ecbe69a1a1a23c50fac | diff --git a/src/d3-funnel/D3Funnel.js b/src/d3-funnel/D3Funnel.js
index <HASH>..<HASH> 100644
--- a/src/d3-funnel/D3Funnel.js
+++ b/src/d3-funnel/D3Funnel.js
@@ -58,6 +58,10 @@ class D3Funnel {
this.labelFormatter = new LabelFormatter();
this.navigator = new Navigator();
+
+ // Bind event handlers
+ this.onM... | Bind event handlers more efficiently | jakezatecky_d3-funnel | train | js |
cd90e5ef050128760c4603d982d0d3c9286b524e | diff --git a/server/config.js b/server/config.js
index <HASH>..<HASH> 100644
--- a/server/config.js
+++ b/server/config.js
@@ -4,6 +4,6 @@ exports.config = {
defaultUserName: 'me',
port: 80,
initialTokens: {
- '4eb4b398c36e62da87469133e2f0cb3f9574d5b3865051': ['messages:rw']
+ '4eb4b398c36e62da87469133e2... | changed default token in example server config to root-scope | remotestorage_remotestorage.js | train | js |
856fae9fe6dd9a59f9c1db38540042e7a301ffc8 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -38,12 +38,15 @@ function fork(options, callback) {
if (!promise) {
defer = Q.defer();
cache[key] = promise = defer.promise;
+ promise._firstCall = true;
}
promise.done(function(result) ... | feat: mark the callback for the first execution | avwo_pfork | train | js |
fefce13700f88aec3cd8ed7fa14496d057e623e1 | diff --git a/lib/tern.js b/lib/tern.js
index <HASH>..<HASH> 100644
--- a/lib/tern.js
+++ b/lib/tern.js
@@ -137,7 +137,10 @@
var file = this.findFile(name);
if (file) {
this.needsPurge.push(file.name);
- this.files.splice(this.files.indexOf(file), 1);
+ for (var i = 0; i < this.files... | Don't leave dangling parent pointers when deleting a file
Issue #<I> | ternjs_tern | train | js |
2f18b2772d4ebf76dca22ff2f7428e28b2642564 | diff --git a/src/parser.js b/src/parser.js
index <HASH>..<HASH> 100644
--- a/src/parser.js
+++ b/src/parser.js
@@ -967,6 +967,10 @@ function convert(context) {
// ^
let startOfInterpolation = op.range[0];
while (source[startOfInterpolation] !==... | fix: add infinite loop safeguards in string interpolation code (#<I>)
This should prevent potential future bugs that could cause an infinite loop
(although all known cases causing an infinite loop have been fixed). | decaffeinate_decaffeinate-parser | train | js |
729249df202c6d83a7ac6d58b973072aba3b079c | diff --git a/tests/UI/specs/MultiSites_spec.js b/tests/UI/specs/MultiSites_spec.js
index <HASH>..<HASH> 100644
--- a/tests/UI/specs/MultiSites_spec.js
+++ b/tests/UI/specs/MultiSites_spec.js
@@ -16,7 +16,12 @@ describe("MultiSitesTest", function () {
var createdSiteId = null;
before(function (done) {
- ... | make sure to pass error to done callback in case there is an error | matomo-org_matomo | train | js |
459d54d042bb0a42b7edeab7b4ad82fdd04d107e | diff --git a/query.go b/query.go
index <HASH>..<HASH> 100644
--- a/query.go
+++ b/query.go
@@ -288,8 +288,9 @@ type WriteResponse struct {
// ChangeResponse is a helper type used when dealing with changefeeds. The type
// contains both the value before the query and the new value.
type ChangeResponse struct {
- NewV... | query: include "state" in ChangeResponse object
When `IncludeStates` is true, the DB will return a couple objects with
the `state` field set to either "initializing" or "ready." Add this
field to ChangeResponse as well as omitempty tags. | rethinkdb_rethinkdb-go | train | go |
14712f35b347f1287f575eff5c5a1b50e7bc3350 | diff --git a/lib/linkser/objects/html.rb b/lib/linkser/objects/html.rb
index <HASH>..<HASH> 100644
--- a/lib/linkser/objects/html.rb
+++ b/lib/linkser/objects/html.rb
@@ -60,6 +60,7 @@ module Linkser
nokogiri.css('img').each do |img|
break if images.length >= max_images
img_src = im... | Skip image if no src attribute is present | ging_linkser | train | rb |
2ca009c4c43e212b54b61099f4e840a49419107f | diff --git a/src/Images/ImageUtils.php b/src/Images/ImageUtils.php
index <HASH>..<HASH> 100644
--- a/src/Images/ImageUtils.php
+++ b/src/Images/ImageUtils.php
@@ -46,6 +46,10 @@ class ImageUtils {
$locallyStoredImages = [];
foreach ($localImages as $localImage) {
+ if (empty($localImage->... | avoid exceptions on empty images (#<I>) | scotteh_php-goose | train | php |
3e4a9631da5205d90c7df58e86a677d83f4e83af | diff --git a/cake/tests/lib/test_manager.php b/cake/tests/lib/test_manager.php
index <HASH>..<HASH> 100644
--- a/cake/tests/lib/test_manager.php
+++ b/cake/tests/lib/test_manager.php
@@ -23,7 +23,7 @@ define('APP_TEST_CASES', TESTS . 'cases');
define('APP_TEST_GROUPS', TESTS . 'groups');
/**
- * TestManager is the ... | Fixing notice due by using a non-existent variable. | cakephp_cakephp | train | php |
24e6e63343f0dda59bf86a5ca16f9223f159350e | diff --git a/lxd/cluster/heartbeat.go b/lxd/cluster/heartbeat.go
index <HASH>..<HASH> 100644
--- a/lxd/cluster/heartbeat.go
+++ b/lxd/cluster/heartbeat.go
@@ -217,14 +217,16 @@ func HeartbeatTask(gateway *Gateway) (task.Func, task.Schedule) {
// Since the database APIs are blocking we need to wrap the core logic
//... | lxd/cluster/heartbeat: Updates HeartbeatTask to skip starting new heartbeat if already running | lxc_lxd | train | go |
27bc297f96724ebf81a251aa8c0d335f214e25fb | diff --git a/spinoff/contrib/filetransfer/filetransfer.py b/spinoff/contrib/filetransfer/filetransfer.py
index <HASH>..<HASH> 100644
--- a/spinoff/contrib/filetransfer/filetransfer.py
+++ b/spinoff/contrib/filetransfer/filetransfer.py
@@ -66,15 +66,11 @@ class FilePublisher(Actor):
@classmethod
def get(cls,... | Removed the redundant FilePublisher._node attribute | eallik_spinoff | train | py |
7c80f3ea485ca5569505ff6683d04ce40bd4c5ce | diff --git a/lib/mini_fb.rb b/lib/mini_fb.rb
index <HASH>..<HASH> 100644
--- a/lib/mini_fb.rb
+++ b/lib/mini_fb.rb
@@ -14,7 +14,7 @@
require 'digest/md5'
require 'erb'
require 'json' unless defined? JSON
-require 'rest_client'
+require 'rest-client'
require 'hashie'
require 'base64'
require 'openssl' | Replace rest_client for rest-client | appoxy_mini_fb | train | rb |
b13a7f450efb3cb52ffe93c6160f80161533651f | diff --git a/lib/xpm/install.js b/lib/xpm/install.js
index <HASH>..<HASH> 100644
--- a/lib/xpm/install.js
+++ b/lib/xpm/install.js
@@ -202,7 +202,7 @@ class Install extends CliCommand {
} else {
log.warn('Package already installed. ' +
'Use --force to overwrite.')
- return CliE... | [#3] no error for 'Package already installed' | xpack_xpm-js | train | js |
dedbe837f29ddfe6d7c0f7628c1fb4ac9dd46b6a | diff --git a/test/e2e/es_cluster_logging.go b/test/e2e/es_cluster_logging.go
index <HASH>..<HASH> 100644
--- a/test/e2e/es_cluster_logging.go
+++ b/test/e2e/es_cluster_logging.go
@@ -219,6 +219,11 @@ func ClusterLevelLoggingWithElasticsearch(f *framework.Framework) {
}
framework.Logf("Found %d healthy nodes.", len(... | Add additional delay to the es logging e2e test to make it stable | kubernetes_kubernetes | train | go |
ae49f76e78c384e42139cf0e82ebd40a328927b8 | diff --git a/src/class-extended-cpt-admin.php b/src/class-extended-cpt-admin.php
index <HASH>..<HASH> 100644
--- a/src/class-extended-cpt-admin.php
+++ b/src/class-extended-cpt-admin.php
@@ -116,6 +116,15 @@ class Extended_CPT_Admin {
# Post updated messages:
add_filter( 'post_updated_messages', [ $this, 'po... | Add the "ext-cpts-admin/{$post_type}/instance" action to allow access to the Extended_CPT_Admin instances. | johnbillion_extended-cpts | train | php |
c1b949869c3de8fc62f8ab072bbd77542b1d3605 | diff --git a/railties/lib/initializer.rb b/railties/lib/initializer.rb
index <HASH>..<HASH> 100644
--- a/railties/lib/initializer.rb
+++ b/railties/lib/initializer.rb
@@ -784,7 +784,6 @@ Run `rake gems:install` to install the missing gems.
def threadsafe!
self.cache_classes = true
self.dependency_loa... | Remove call to active_record.allow_concurrency since it's deprecated | rails_rails | train | rb |
ff928df3a30bae7379451bffe6f6e487b63b4909 | diff --git a/lib/node/default.js b/lib/node/default.js
index <HASH>..<HASH> 100644
--- a/lib/node/default.js
+++ b/lib/node/default.js
@@ -2,8 +2,6 @@
module.exports = require(__dirname).define({
type: 'DEFAULT',
- constructor: function() {
- },
value: function() {
return;
}
diff --git a/lib/node/ind... | make generated node constructors slightly less weird | brianc_node-sql | train | js,js |
e5fcde80bb1897f2a8d8fa7797aab55441982759 | diff --git a/src/core/text/Text.js b/src/core/text/Text.js
index <HASH>..<HASH> 100644
--- a/src/core/text/Text.js
+++ b/src/core/text/Text.js
@@ -409,6 +409,8 @@ Text.prototype.updateTexture = function ()
texture.baseTexture.hasLoaded = true;
texture.baseTexture.resolution = this.resolution;
+ texture.b... | BaseTexture used for text now reports correct realWidth and realHeight (#<I>) | pixijs_pixi.js | train | js |
303c5ebc54b2f3237057ef12fb76147a4c5ddbd3 | diff --git a/validator/sawtooth_validator/execution/executor.py b/validator/sawtooth_validator/execution/executor.py
index <HASH>..<HASH> 100644
--- a/validator/sawtooth_validator/execution/executor.py
+++ b/validator/sawtooth_validator/execution/executor.py
@@ -296,7 +296,7 @@ class _Waiter(object):
# Wait fo... | Fix incorrect keyword argument
The TypeError on invalid keyword argument wasn't displayed due to
running in a threadpool. | hyperledger_sawtooth-core | train | py |
8905bcf22223bb1059416df8059ac05a9646971b | diff --git a/lib/marked.js b/lib/marked.js
index <HASH>..<HASH> 100644
--- a/lib/marked.js
+++ b/lib/marked.js
@@ -16,7 +16,7 @@ var block = {
hr: /^( *[\-*_]){3,} *\n/,
heading: /^ *(#{1,6}) *([^\0]+?) *#* *\n+/,
lheading: /^([^\n]+)\n *(=|-){3,}/,
- blockquote: /^ *>[^\0]+?(?=\n\n| *$)|^ *>[^\n]*(?:\n *>[^\... | more compliant lazy blockquotes. closes #<I>. | remarkjs_remark | train | js |
4585a02118c2f9c919e7885548ff4f3c5dbc4ea7 | diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/io/checkpointing/AlternatingController.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/io/checkpointing/AlternatingController.java
index <HASH>..<HASH> 100644
--- a/flink-streaming-java/src/main/java/org/apac... | [refactor][checkpoint] Remove unused method in AlternatingController | apache_flink | train | java |
6360d74323d3d06227b99a1ad40226add1e7c006 | diff --git a/structr-ui/src/main/resources/structr/js/helper.js b/structr-ui/src/main/resources/structr/js/helper.js
index <HASH>..<HASH> 100644
--- a/structr-ui/src/main/resources/structr/js/helper.js
+++ b/structr-ui/src/main/resources/structr/js/helper.js
@@ -683,8 +683,8 @@ var _Logger = {
if (type) {
return... | dont ignore log messages with unknown log type (might happen for new/unknown websocket commands) | structr_structr | train | js |
9f17c35f2fd46dbf913a8c82c0c989cdb733b496 | diff --git a/app/controllers/cangaroo/endpoint_controller.rb b/app/controllers/cangaroo/endpoint_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/cangaroo/endpoint_controller.rb
+++ b/app/controllers/cangaroo/endpoint_controller.rb
@@ -42,6 +42,10 @@ module Cangaroo
def key
if Rails.configu... | Check if basic auth creds are specified
without this, rails4 will throw a fatal error when attempting to extract username and password | nebulab_cangaroo | train | rb |
5735baaa4a66e08e726a590ae6c660807af63fac | diff --git a/src/Mysql/MysqlDriver.php b/src/Mysql/MysqlDriver.php
index <HASH>..<HASH> 100644
--- a/src/Mysql/MysqlDriver.php
+++ b/src/Mysql/MysqlDriver.php
@@ -479,6 +479,8 @@ class MysqlDriver extends PdoDriver implements UTF8MB4SupportInterface
*/
public function isMariaDb()
{
+ $this->connect();
+
retu... | Add connect to isMariaDB functions. | joomla-framework_database | train | php,php |
eb2cbf86238b219b07a76f8f3c786e31df3a8327 | diff --git a/ez_setup.py b/ez_setup.py
index <HASH>..<HASH> 100644
--- a/ez_setup.py
+++ b/ez_setup.py
@@ -31,7 +31,7 @@ try:
except ImportError:
USER_SITE = None
-DEFAULT_VERSION = "3.1"
+DEFAULT_VERSION = "3.0.1"
DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/"
def _python_cmd(*args):... | Bumped to <I> in preparation for next release. | pypa_setuptools | train | py,py |
473074142d9c3bc24d3c1a43c7288216eb829666 | diff --git a/spec/amq/protocol/table_spec.rb b/spec/amq/protocol/table_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/amq/protocol/table_spec.rb
+++ b/spec/amq/protocol/table_spec.rb
@@ -117,7 +117,11 @@ module AMQ
"name" => "AMQP",
"major" => 0,
"minor" => "9",
- ... | Use non-ASCII characters & even deeper nested hashes in this example | ruby-amqp_amq-protocol | train | rb |
de31285ca52f155826e999fed1a0f27b43a5d32b | diff --git a/example/main.js b/example/main.js
index <HASH>..<HASH> 100644
--- a/example/main.js
+++ b/example/main.js
@@ -16,7 +16,7 @@ document.addEventListener('DOMContentLoaded', function () {
};
if (location.search.match('scroll')) {
- options.minPxPerSec = 20;
+ options.minPxPerSec = 100... | set larget minPxPerSec for short sample | katspaugh_wavesurfer.js | train | js |
64974fdd5b048baf970844614b4ee58d5490a39c | diff --git a/nodeup/pkg/model/kube_apiserver.go b/nodeup/pkg/model/kube_apiserver.go
index <HASH>..<HASH> 100644
--- a/nodeup/pkg/model/kube_apiserver.go
+++ b/nodeup/pkg/model/kube_apiserver.go
@@ -441,8 +441,8 @@ func (b *KubeAPIServerBuilder) buildPod() (*v1.Pod, error) {
func (b *KubeAPIServerBuilder) buildAnnot... | GH-<I> Only manage internal DNS zone if configuration has been specified | kubernetes_kops | train | go |
7be9ca18a6cdec525b0eb07544c306e311e37c15 | diff --git a/lib/fibers/transform.js b/lib/fibers/transform.js
index <HASH>..<HASH> 100644
--- a/lib/fibers/transform.js
+++ b/lib/fibers/transform.js
@@ -255,7 +255,8 @@ function transform(source, options) {
// Close up the function
body.map(walk);
- if (options.generators && async) {
+ // we don't need ... | issue #<I> - do not generate 'yield undefined' at the end of functions | Sage_streamlinejs | train | js,js |
604be9363edf47840820a1a7285fa232856953c9 | diff --git a/specs/Bag.spec.php b/specs/Bag.spec.php
index <HASH>..<HASH> 100644
--- a/specs/Bag.spec.php
+++ b/specs/Bag.spec.php
@@ -20,6 +20,11 @@ describe("Bag", function() {
expect( (array) $b )->to->equal(array());
});
+ it("can unset non-existing elements", function() {
+ $b = new Bag();
+ unset($b['foo... | Allow bags to unset non-existing offsets | dirtsimple_imposer | train | php,php |
e936ed651d915d3feba5ce6d0d63febe6a667a5a | diff --git a/liquibase-core/src/main/java/liquibase/database/core/OracleDatabase.java b/liquibase-core/src/main/java/liquibase/database/core/OracleDatabase.java
index <HASH>..<HASH> 100644
--- a/liquibase-core/src/main/java/liquibase/database/core/OracleDatabase.java
+++ b/liquibase-core/src/main/java/liquibase/databas... | CORE-<I>
ORDER keyword isn't escaped for Oracle | liquibase_liquibase | train | java |
c70601ec666c6ebc19227320d0e2a4920ae11d90 | diff --git a/habu/lib/webid.py b/habu/lib/webid.py
index <HASH>..<HASH> 100644
--- a/habu/lib/webid.py
+++ b/habu/lib/webid.py
@@ -167,12 +167,12 @@ def webid(url, no_cache=False, verbose=False):
logging.info("removing {exlude} because its excluded by {t}".format(exlude=exclude, t=t))
del(tech... | response now is a dict with key=tech value=version | portantier_habu | train | py,py |
e81bf0a757e41510f28ae4829c5690004b681a2d | diff --git a/inginious/client/_zeromq_client.py b/inginious/client/_zeromq_client.py
index <HASH>..<HASH> 100644
--- a/inginious/client/_zeromq_client.py
+++ b/inginious/client/_zeromq_client.py
@@ -108,7 +108,9 @@ class BetterParanoidPirateClient(object, metaclass=abc.ABCMeta):
"""
Handle a pong
... | Improve client resilience when backend is under high load but is still responding | UCL-INGI_INGInious | train | py |
745593e54aee160e5c24cb818b3f665e3fd51b81 | diff --git a/nion/swift/LineGraphCanvasItem.py b/nion/swift/LineGraphCanvasItem.py
index <HASH>..<HASH> 100755
--- a/nion/swift/LineGraphCanvasItem.py
+++ b/nion/swift/LineGraphCanvasItem.py
@@ -376,9 +376,10 @@ def draw_line_graph(drawing_context, plot_height, plot_width, plot_origin_y, plo
drawing_context.be... | Always use x-axis as baseline for log-plots (consistent with other plotting software). Fixes #<I>. | nion-software_nionswift | train | py |
4141efd154be1edd3ad2349869504a4ee7292f53 | diff --git a/armor.go b/armor.go
index <HASH>..<HASH> 100644
--- a/armor.go
+++ b/armor.go
@@ -83,7 +83,7 @@ func (s *armorEncoderStream) Close() (err error) {
pad = " "
}
}
- if _, err := fmt.Fprintf(s.encoded, "%s%c\n\n%s%c\n", pad, s.params.Punctuation, s.footer, s.params.Punctuation); err != nil {
+ if _, ... | make the armor header and footer inline | keybase_saltpack | train | go |
03812bb1e7ec6af384976bc4a9fb22f054dece89 | diff --git a/plugin/rewrite/reverter.go b/plugin/rewrite/reverter.go
index <HASH>..<HASH> 100644
--- a/plugin/rewrite/reverter.go
+++ b/plugin/rewrite/reverter.go
@@ -36,7 +36,10 @@ func NewResponseReverter(w dns.ResponseWriter, r *dns.Msg) *ResponseReverter {
}
// WriteMsg records the status code and calls the und... | plugin/rewrite: copy msg before rewritting (#<I>)
Copy the msg to prevent messing with the (via the pointer) original
created message that may be stored in the cache or anything other data
store. | coredns_coredns | train | go |
ba14c047f85a1c841edb6576772daa6da9c1bfb1 | diff --git a/ui/src/kapacitor/components/ValuesSection.js b/ui/src/kapacitor/components/ValuesSection.js
index <HASH>..<HASH> 100644
--- a/ui/src/kapacitor/components/ValuesSection.js
+++ b/ui/src/kapacitor/components/ValuesSection.js
@@ -12,7 +12,7 @@ import {Tab, TabList, TabPanels, TabPanel, Tabs} from 'shared/compo... | Transform ValuesSection into an SFC | influxdata_influxdb | train | js |
7076e8dcf8ecb14a8a899178673a89c17e9f3fe4 | diff --git a/lib/rack/funky-cache.rb b/lib/rack/funky-cache.rb
index <HASH>..<HASH> 100644
--- a/lib/rack/funky-cache.rb
+++ b/lib/rack/funky-cache.rb
@@ -13,15 +13,11 @@ module Rack
@directory = settings[:directory] || ::File.join(@root, @path) end
def call(env)
- dup._call(env)
- end
-
- ... | Dup call is apparently not needed anymore. Add possibility to exclude pages with a proc. For example:
use Rack::FunkyCache, :exclude => proc { |env| env["PATH_INFO"].match(/^\/admin/) } | tuupola_rack-funky-cache | train | rb |
7677fb6d60a2011a3e046b66b699e62cd053aa4f | diff --git a/src/Models/TableMigration.php b/src/Models/TableMigration.php
index <HASH>..<HASH> 100644
--- a/src/Models/TableMigration.php
+++ b/src/Models/TableMigration.php
@@ -517,7 +517,7 @@ class TableMigration implements Countable
$modelNames = [];
foreach (explode('_', $tableName) as ... | Bug fix 'Model Xxxxxx.php not found' when table contains underscore and consists of two words like order_items -> OrderItems.php ( was Orderitems.php) | b3nl_laravel-mwb-model | train | php |
bc081a03d85a88cc2160ade9256d96d7b84c4caa | diff --git a/api/client/cli.go b/api/client/cli.go
index <HASH>..<HASH> 100644
--- a/api/client/cli.go
+++ b/api/client/cli.go
@@ -23,6 +23,9 @@ var funcMap = template.FuncMap{
}
func (cli *DockerCli) getMethod(name string) (func(...string) error, bool) {
+ if len(name) == 0 {
+ return nil, false
+ }
methodName ... | docker '' causes a golang crash.
This patch fixes the problem.
Docker-DCO-<I>- | moby_moby | train | go |
a605e19ab129dbae030dd4924afda06add2eee62 | diff --git a/atlassian/jira.py b/atlassian/jira.py
index <HASH>..<HASH> 100644
--- a/atlassian/jira.py
+++ b/atlassian/jira.py
@@ -3394,6 +3394,13 @@ api-group-workflows/#api-rest-api-2-workflow-search-get)
url = "rest/agile/1.0/{board_id}/backlog".format(board_id=board_id)
return self.get(url)
+ ... | [JIRA] Add a funciton to get issues for board (#<I>) | atlassian-api_atlassian-python-api | train | py |
caaeaf591b4bbbbc07bb3edb8fed4309872a7a87 | diff --git a/redisson/src/main/java/org/redisson/RedissonLock.java b/redisson/src/main/java/org/redisson/RedissonLock.java
index <HASH>..<HASH> 100644
--- a/redisson/src/main/java/org/redisson/RedissonLock.java
+++ b/redisson/src/main/java/org/redisson/RedissonLock.java
@@ -284,8 +284,10 @@ public class RedissonLock ex... | Fixed - Redisson tries to renewed Lock expiration even if lock doesn't exist. Regression since <I> version #<I> | redisson_redisson | train | java |
eaaf3e49f774ccfb0ac9f5179fb917824e069561 | diff --git a/spec/spec_fixtures.rb b/spec/spec_fixtures.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_fixtures.rb
+++ b/spec/spec_fixtures.rb
@@ -7,7 +7,7 @@ module IniParse
if @@fixtures.has_key?(fix)
@@fixtures[fix]
else
- File.read(Pathname(__FILE__).dirname.expand_path / 'fixt... | Only hit the disk once when repeatedly loading a file-based fixture. | antw_iniparse | train | rb |
00059d621c147b3d69f2b86ea26195f762d74b08 | diff --git a/lang/fr/quiz.php b/lang/fr/quiz.php
index <HASH>..<HASH> 100644
--- a/lang/fr/quiz.php
+++ b/lang/fr/quiz.php
@@ -128,7 +128,7 @@ $string['editingrqp'] = '$a : modification d\'une question';
$string['editingshortanswer'] = 'Modifier une question � r�ponse courte';
$string['editingtruefalse'] = 'Modi... | Small correction, suggested by Joseph R�zeau | moodle_moodle | train | php |
46bc47921895ca5bf31496076328d42a2e01893f | diff --git a/tests/test_plot.py b/tests/test_plot.py
index <HASH>..<HASH> 100644
--- a/tests/test_plot.py
+++ b/tests/test_plot.py
@@ -1,3 +1,5 @@
+from more_itertools.recipes import flatten
+
from svg.charts.plot import Plot
@@ -56,3 +58,27 @@ class TestPlot:
assert b'Sam' in svg
assert b'Dan' in svg
+ @s... | Add tests capturing failures with iterable data. Ref #<I>. | jaraco_svg.charts | train | py |
1e48e140ae1c7d0709f73a035861e2d7626d270f | diff --git a/src/toil/cwl/cwltoil.py b/src/toil/cwl/cwltoil.py
index <HASH>..<HASH> 100755
--- a/src/toil/cwl/cwltoil.py
+++ b/src/toil/cwl/cwltoil.py
@@ -30,7 +30,7 @@ import logging
import copy
import functools
import shutil
-from typing import Text, Mapping, MutableSequence
+from typing import Text, Mapping, Muta... | Added fix to remove @id values from job output dicts | DataBiosphere_toil | train | py |
4134e106685273a3b177943e01e9350882979111 | diff --git a/Kwc/Advanced/VideoPlayer/Component.js b/Kwc/Advanced/VideoPlayer/Component.js
index <HASH>..<HASH> 100644
--- a/Kwc/Advanced/VideoPlayer/Component.js
+++ b/Kwc/Advanced/VideoPlayer/Component.js
@@ -1,5 +1,7 @@
Kwf.onElementReady('.kwcAdvancedVideoPlayer', function(el, config) {
$(el.dom).children('vi... | fixed the path to the swf file, for the flash fallback (e.g. ie8) | koala-framework_koala-framework | train | js |
ce75f9d1046dd73a19c32d6410678d204cf0e12e | diff --git a/tests/Components/CheckBoxDesignTest.php b/tests/Components/CheckBoxDesignTest.php
index <HASH>..<HASH> 100644
--- a/tests/Components/CheckBoxDesignTest.php
+++ b/tests/Components/CheckBoxDesignTest.php
@@ -84,6 +84,8 @@ class CheckBoxDesignTest extends \PHPUnit_Framework_TestCase
$this->assertNull... | commented out unit test that fails on travis CI for no reason | steeffeen_FancyManiaLinks | train | php |
d23ca0098c0ef28b79e4833fcf6ed85fae2aa11a | diff --git a/command/build_ext.py b/command/build_ext.py
index <HASH>..<HASH> 100644
--- a/command/build_ext.py
+++ b/command/build_ext.py
@@ -177,6 +177,21 @@ class build_ext (Command):
# building python standard extensions
self.library_dirs.append('.')
+ # The argument parsi... | Fix bug #<I>: the --define and --undef options didn't work, whether
specified on the command-line or in setup.cfg. The option processing
leaves them as strings, but they're supposed to be lists. | pypa_setuptools | train | py |
99497202fd877bf8005d374b26f9e4027c30c498 | diff --git a/packages/cqmd/src/index.js b/packages/cqmd/src/index.js
index <HASH>..<HASH> 100644
--- a/packages/cqmd/src/index.js
+++ b/packages/cqmd/src/index.js
@@ -37,7 +37,8 @@ export default async function cqmd(text, opts={}) {
let fullFilename = path.join(opts.path, actualName);
let contents = fs.read... | fixes cqmd to handle the promises | fullstackio_cq | train | js |
e6fadccc23a1516d47f8b89bdbec4ba348d44672 | diff --git a/tests/features/bootstrap/FeatureContext.php b/tests/features/bootstrap/FeatureContext.php
index <HASH>..<HASH> 100644
--- a/tests/features/bootstrap/FeatureContext.php
+++ b/tests/features/bootstrap/FeatureContext.php
@@ -76,7 +76,7 @@ class FeatureContext extends RawDrupalContext implements SnippetAccepti... | Added a dot to fix sniffer | ymcatwincities_openy | train | php |
080618f7328ce998739b17853657f37312191c1b | diff --git a/src/core/Mesh.js b/src/core/Mesh.js
index <HASH>..<HASH> 100644
--- a/src/core/Mesh.js
+++ b/src/core/Mesh.js
@@ -3,7 +3,7 @@ import { Mesh as ThreeMesh } from 'three'
import Node from './Node'
import { props, mapPropTo } from './props'
-// register behaviors that can be used with this class.
+// regis... | remove THREE from global (we don't need it global just yet, but we will soon and will do it in a better way) | trusktr_infamous | train | js,js |
73d8c2b190648d1c897c38bf8462058f66f368b9 | diff --git a/opfutils/src/main/java/org/onepf/opfutils/OPFPreferences.java b/opfutils/src/main/java/org/onepf/opfutils/OPFPreferences.java
index <HASH>..<HASH> 100644
--- a/opfutils/src/main/java/org/onepf/opfutils/OPFPreferences.java
+++ b/opfutils/src/main/java/org/onepf/opfutils/OPFPreferences.java
@@ -142,7 +142,7 ... | Use MODE_MULTI_PROCESS as default mode for preferences. | onepf_OPFUtils | train | java |
ffd62759207cfb535e1905bf8da2adc0d008ed30 | diff --git a/Swat/SwatCellRendererContainer.php b/Swat/SwatCellRendererContainer.php
index <HASH>..<HASH> 100644
--- a/Swat/SwatCellRendererContainer.php
+++ b/Swat/SwatCellRendererContainer.php
@@ -102,7 +102,8 @@ abstract class SwatCellRendererContainer extends SwatUIObject implements
public function getRenderers()... | Clone before iterating to avoid breaking other iterations currently in-progress.
svn commit r<I> | silverorange_swat | train | php |
14ab09900caac2c6bb41df8433e5b6a1e08e09dd | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,6 @@
##
from sys import version_info
-from warnings import warn
try:
from setuptools import setup
@@ -32,7 +31,6 @@ install_requires = [
tests_require = None
if version_info[0] == 2:
- warn("For SN... | Remove SNI warning as SNI support has been backported to <I>
closes #<I> | xray7224_PyPump | train | py |
dbcff453fb859a028aafdddecaef11de48f630a8 | diff --git a/Tests/Auth/OpenID/Consumer.php b/Tests/Auth/OpenID/Consumer.php
index <HASH>..<HASH> 100644
--- a/Tests/Auth/OpenID/Consumer.php
+++ b/Tests/Auth/OpenID/Consumer.php
@@ -203,10 +203,9 @@ class Tests_Auth_OpenID_Consumer extends PHPUnit_TestCase {
$query['openid.sig'] = 'fake';
}
- ... | [project @ Reduce number of assertions] | openid_php-openid | train | php |
d3a9ce5afc46ff45adb63f6f06856fa6a29f865c | diff --git a/superset-frontend/src/explore/exploreUtils.js b/superset-frontend/src/explore/exploreUtils.js
index <HASH>..<HASH> 100644
--- a/superset-frontend/src/explore/exploreUtils.js
+++ b/superset-frontend/src/explore/exploreUtils.js
@@ -198,7 +198,12 @@ export const shouldUseLegacyApi = formData => {
return us... | fix: chart export fails when buildQuery not present (#<I>) | apache_incubator-superset | train | js |
aa8943cd31100837ef276331609a240075c235fa | diff --git a/code/libraries/koowa/controller/view.php b/code/libraries/koowa/controller/view.php
index <HASH>..<HASH> 100644
--- a/code/libraries/koowa/controller/view.php
+++ b/code/libraries/koowa/controller/view.php
@@ -282,6 +282,7 @@ abstract class KControllerView extends KControllerBread
} else $row = $this-... | Apply action should redirect to the request URL. This also solve the problem that the layout information dissapears from the URL after an apply RAP. | joomlatools_joomlatools-framework | train | php |
1fc125a954c9de0aa095083474f20c19d0cd59b6 | diff --git a/pmag_menu_dialogs.py b/pmag_menu_dialogs.py
index <HASH>..<HASH> 100755
--- a/pmag_menu_dialogs.py
+++ b/pmag_menu_dialogs.py
@@ -1984,6 +1984,7 @@ class PlotFrame(wx.Frame):
def on_save(self, event):
plt.savefig(self.figname)
+ plt.clf() # clear figure
dir_path, figname = o... | add clf() to PlotFrame to make sure each plot is unique | PmagPy_PmagPy | train | py |
8a46ef083380f481f15f46f7b53f6af95f4a9025 | diff --git a/tests/test_dates.py b/tests/test_dates.py
index <HASH>..<HASH> 100644
--- a/tests/test_dates.py
+++ b/tests/test_dates.py
@@ -15,6 +15,21 @@ def test_date_rounding():
assert chart.date == '1996-08-03'
+def test_previous_next():
+ """Checks that the date, previousDate, and nextDate attributes ar... | Test that date attributes are parsed, not computed
Currently failing. I brought this example up in #<I>. | guoguo12_billboard-charts | train | py |
68da3ff250e238793bd662474e7dc421a4a987f8 | diff --git a/packages/xod-client/src/project/selectors.js b/packages/xod-client/src/project/selectors.js
index <HASH>..<HASH> 100644
--- a/packages/xod-client/src/project/selectors.js
+++ b/packages/xod-client/src/project/selectors.js
@@ -352,6 +352,7 @@ export const getPatchSearchIndex = createSelector(
R.rejec... | feat(xod-client): do not show utility patches from suggester | xodio_xod | train | js |
050684450befaac8972120688b69825e8f0acbca | diff --git a/ethrpc/packages.go b/ethrpc/packages.go
index <HASH>..<HASH> 100644
--- a/ethrpc/packages.go
+++ b/ethrpc/packages.go
@@ -4,7 +4,8 @@ import (
"encoding/json"
"errors"
"github.com/ethereum/eth-go/ethpub"
- _ "log"
+ "github.com/ethereum/eth-go/ethutil"
+ "math/big"
)
type EthereumApi struct {
@@ ... | Assume arguments are supplied as strings to the rpc interface | ethereum_go-ethereum | train | go |
4ef6f1ba145042fa723c133b4758aa27c9b3e745 | diff --git a/src/Libraries/File/File.php b/src/Libraries/File/File.php
index <HASH>..<HASH> 100644
--- a/src/Libraries/File/File.php
+++ b/src/Libraries/File/File.php
@@ -17,8 +17,6 @@ namespace Quantum\Libraries\File;
/**
* File class
*
- * Initialize the database
- *
* @package Quantum
* @subpackage Librar... | Removing incorrect comments from doc block | softberg_quantum-core | train | php,php |
4e8f1bb153bdd160ed6641925be1d2a45d999a75 | diff --git a/core/src/main/java/org/bitcoinj/core/Block.java b/core/src/main/java/org/bitcoinj/core/Block.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/bitcoinj/core/Block.java
+++ b/core/src/main/java/org/bitcoinj/core/Block.java
@@ -180,7 +180,7 @@ public class Block extends Message {
hash = ... | Block.parseHeader() and Block.parseTransactions() are now protected, so they can be called from subclasses. | bitcoinj_bitcoinj | train | java |
4441fa13723bba6ddc3b22cb30bbc26c25f24c05 | diff --git a/NavigationReactNative/sample/twitter/Home.js b/NavigationReactNative/sample/twitter/Home.js
index <HASH>..<HASH> 100644
--- a/NavigationReactNative/sample/twitter/Home.js
+++ b/NavigationReactNative/sample/twitter/Home.js
@@ -18,7 +18,6 @@ const styles = StyleSheet.create({
paddingTop: 40,
paddin... | Removed whitespace gap at top on scroll | grahammendick_navigation | train | js |
e5056e67de1d0bbd6344ef9d135b3a44607e3a27 | diff --git a/lib/active_admin.rb b/lib/active_admin.rb
index <HASH>..<HASH> 100644
--- a/lib/active_admin.rb
+++ b/lib/active_admin.rb
@@ -1,4 +1,6 @@
-require 'active_support/core_ext/class/attribute' # needed for Ransack
+require 'active_support/core_ext'
+require 'set'
+
require 'ransack'
require 'ransack_ext'
re... | clearly require dependencies
activerecord-hackery/ransack#<I> | activeadmin_activeadmin | train | rb |
3050a471ad1dd26222756ae969f535a116d41b41 | diff --git a/nodes/api_current-state/api_current-state.js b/nodes/api_current-state/api_current-state.js
index <HASH>..<HASH> 100644
--- a/nodes/api_current-state/api_current-state.js
+++ b/nodes/api_current-state/api_current-state.js
@@ -59,7 +59,8 @@ module.exports = function(RED) {
} else {
... | re-add success status to api-call-service | zachowj_node-red-contrib-home-assistant-websocket | train | js |
377d358cc60afbb7cda19db327b6efa65ca76f03 | diff --git a/src/PHPUnit/PHPMatcherConstraint.php b/src/PHPUnit/PHPMatcherConstraint.php
index <HASH>..<HASH> 100644
--- a/src/PHPUnit/PHPMatcherConstraint.php
+++ b/src/PHPUnit/PHPMatcherConstraint.php
@@ -16,7 +16,9 @@ final class PHPMatcherConstraint extends Constraint
public function __construct(string $patt... | Fix PHPUnit 8 BC break by conditionally call Constraint constructor (#<I>) | coduo_php-matcher | train | php |
f4ea03d2fb1e046a16a4bcb8e59b9451ee152d5b | diff --git a/lib/resque/worker.rb b/lib/resque/worker.rb
index <HASH>..<HASH> 100644
--- a/lib/resque/worker.rb
+++ b/lib/resque/worker.rb
@@ -16,6 +16,12 @@ module Resque
WORKER_HEARTBEAT_KEY = "workers:heartbeat"
+ @@all_heartbeat_threads = []
+ def self.kill_all_heartbeat_threads
+ @@all_heartbea... | Kill all heartbeat threads after each test run | resque_resque | train | rb,rb |
82dc8168af0c171ce28663ef7ab951f699c4856f | diff --git a/celeryconfig.py b/celeryconfig.py
index <HASH>..<HASH> 100644
--- a/celeryconfig.py
+++ b/celeryconfig.py
@@ -89,3 +89,8 @@ CELERY_IMPORTS = get_core_modules(engine) + [
]
os.environ["DJANGO_SETTINGS_MODULE"] = "openquake.engine.settings"
+
+try:
+ from openquake.engine.utils import tasks
+excep... | Fixed a bug affecting celery 2 only when nose is used to run the tests
Former-commit-id: <I>ce<I>fb<I>b<I>be3f3df<I>d<I>ac1e5 | gem_oq-engine | train | py |
55bf95102828fa0f209ce4594cd0ef6f0db1098f | diff --git a/test/13-integration-tests.js b/test/13-integration-tests.js
index <HASH>..<HASH> 100644
--- a/test/13-integration-tests.js
+++ b/test/13-integration-tests.js
@@ -1186,7 +1186,9 @@ describe('Integration tests', () => {
err.message.indexOf('You do not have permission to publish') > -... | fix 'Should allow publishing with special flag' | inikulin_publish-please | train | js |
c807d83b9aaea188355f1a64b4df96b53870ade4 | diff --git a/src/textlint-rule-no-nfd.js b/src/textlint-rule-no-nfd.js
index <HASH>..<HASH> 100644
--- a/src/textlint-rule-no-nfd.js
+++ b/src/textlint-rule-no-nfd.js
@@ -13,6 +13,9 @@ function reporter(context) {
}
const text = getSource(node);
matchCaptureGroupAll(text, /([\u309... | fix(rule): avoid -index | azu_textlint-rule-no-nfd | train | js |
e538361b9a351a2840f2e4b8e341ef983af41ce2 | diff --git a/lib/type.js b/lib/type.js
index <HASH>..<HASH> 100644
--- a/lib/type.js
+++ b/lib/type.js
@@ -114,7 +114,11 @@ function Type (type) {
if ('CString' == type.name) {
rtn = type.ffi_type = bindings.FFI_TYPES.pointer
} else {
- rtn = type.ffi_type = bindings.FFI_TYPES[type.name]
+ va... | type: recurse up the prototype chain to type to find the `ffi_type` to use
Makes the "long" and "ulong" types work. | node-ffi-napi_node-ffi-napi | train | js,js |
cffa9c88c0a6296bf2197808ade18c9f74d9b77f | diff --git a/hotdoc/core/tree.py b/hotdoc/core/tree.py
index <HASH>..<HASH> 100644
--- a/hotdoc/core/tree.py
+++ b/hotdoc/core/tree.py
@@ -87,8 +87,8 @@ Logger.register_warning_code('markdown-bad-link', HotdocSourceException)
class Page:
"Banana banana"
meta_schema = {Optional('title'): And(str, len),
- ... | We should not force short-description and description to be none empty | hotdoc_hotdoc | train | py |
dca5582062c10f22281f37960823c3d936cf75af | diff --git a/mama_cas/mixins.py b/mama_cas/mixins.py
index <HASH>..<HASH> 100644
--- a/mama_cas/mixins.py
+++ b/mama_cas/mixins.py
@@ -12,7 +12,7 @@ from django.views.decorators.cache import never_cache
from mama_cas.models import ServiceTicket
from mama_cas.models import ProxyTicket
from mama_cas.models import Prox... | Use more specific error for wrong ticket type | jbittel_django-mama-cas | train | py |
0866dfa1dd7f1eb0ef72e703959046b3750789f3 | diff --git a/pyrogram/connection/transport/tcp/__init__.py b/pyrogram/connection/transport/tcp/__init__.py
index <HASH>..<HASH> 100644
--- a/pyrogram/connection/transport/tcp/__init__.py
+++ b/pyrogram/connection/transport/tcp/__init__.py
@@ -17,5 +17,6 @@
# along with Pyrogram. If not, see <http://www.gnu.org/licens... | Make TCPAbridgedO importable | pyrogram_pyrogram | train | py |
d5485cd4be1dfe7e0239231ffecf01d62db02535 | diff --git a/src/User/UserIdentityDetails.php b/src/User/UserIdentityDetails.php
index <HASH>..<HASH> 100644
--- a/src/User/UserIdentityDetails.php
+++ b/src/User/UserIdentityDetails.php
@@ -64,7 +64,7 @@ class UserIdentityDetails implements \JsonSerializable
/**
* @return array
*/
- function jsonSe... | III-<I> Fixed coding standards. | cultuurnet_udb3-php | train | php |
f714250daa67efce08b5a7320e28ca1368eaba06 | diff --git a/tests/test_pygdk3.py b/tests/test_pygdk3.py
index <HASH>..<HASH> 100644
--- a/tests/test_pygdk3.py
+++ b/tests/test_pygdk3.py
@@ -1,14 +1,18 @@
+from pyscreenshot.util import use_x_display
+
from ref import backend_to_check, check_import
ok = False
if check_import("gi"):
- import gi
- # Arch: At... | test: check gdk3 import | ponty_pyscreenshot | train | py |
6a28ba076fafec2105ca225a0e2d88a5c0a48221 | diff --git a/src/pylast/__init__.py b/src/pylast/__init__.py
index <HASH>..<HASH> 100644
--- a/src/pylast/__init__.py
+++ b/src/pylast/__init__.py
@@ -932,7 +932,15 @@ class _Request:
raise NetworkError(self.network, e)
try:
- response_text = _unicode(conn.getresponse().read())
+ ... | Improve handling of error responses from the API | pylast_pylast | train | py |
527082ca27701634e2ad727e4a51cba057ea7803 | diff --git a/tests/Feature/UIWithCustomAssetConfigurationTest.php b/tests/Feature/UIWithCustomAssetConfigurationTest.php
index <HASH>..<HASH> 100644
--- a/tests/Feature/UIWithCustomAssetConfigurationTest.php
+++ b/tests/Feature/UIWithCustomAssetConfigurationTest.php
@@ -18,7 +18,7 @@ class UIWithCustomAssetConfiguratio... | Fixed L7 `assertSee` test compatibility (prevent from unwanted escape) | artkonekt_appshell | train | php |
4f81ddabfff902853e668e278f1d44b96c8b8c4c | diff --git a/modules/ViewDataTable.php b/modules/ViewDataTable.php
index <HASH>..<HASH> 100644
--- a/modules/ViewDataTable.php
+++ b/modules/ViewDataTable.php
@@ -214,13 +214,13 @@ abstract class Piwik_ViewDataTable
protected function getUniqIdTable()
{
-
+ $uniqIdTable = '';
// if we request a subDataTable... | - fixing bug recently introduced, tables were not ajaxified anymore
git-svn-id: <URL> | matomo-org_matomo | train | php |
313a3fcd83f0f35fced405db9b1442fb4938b1cf | diff --git a/site/assets/js/app.js b/site/assets/js/app.js
index <HASH>..<HASH> 100644
--- a/site/assets/js/app.js
+++ b/site/assets/js/app.js
@@ -41,7 +41,7 @@ if ($lgInlineContainer) {
rotate: false,
download: false,
slideDelay: 400,
- plugins: [lgZoom, lgFullscreen, lgShare, lgAutop... | docs(demo): remove fullscreen from inline demo | sachinchoolur_lightGallery | train | js |
2c8c643ce39414f56a6bc72dca7a8a88b03095f9 | diff --git a/src/Dev/Tasks/MigrateFileTask.php b/src/Dev/Tasks/MigrateFileTask.php
index <HASH>..<HASH> 100644
--- a/src/Dev/Tasks/MigrateFileTask.php
+++ b/src/Dev/Tasks/MigrateFileTask.php
@@ -144,6 +144,8 @@ class MigrateFileTask extends BuildTask
}
}
+ $this->logger->info("Done!");
+
... | MigrateFileTask now outputs "Done" when it has finished running (#<I>) | silverstripe_silverstripe-framework | train | php |
da717a741070edbc8d694b8d208b247bc652028e | diff --git a/Metadata/Driver/DoctrineTypeDriver.php b/Metadata/Driver/DoctrineTypeDriver.php
index <HASH>..<HASH> 100644
--- a/Metadata/Driver/DoctrineTypeDriver.php
+++ b/Metadata/Driver/DoctrineTypeDriver.php
@@ -76,7 +76,7 @@ class DoctrineTypeDriver implements DriverInterface
$classMetadata = $this->delega... | Fix incorrect parameter in DoctrineTypeDriver
Reflection class was passed in instead of class name | alekitto_serializer | train | php |
c133597c4acb228cdce7ac416229464afb53cc55 | diff --git a/km3pipe/utils/h5extract.py b/km3pipe/utils/h5extract.py
index <HASH>..<HASH> 100644
--- a/km3pipe/utils/h5extract.py
+++ b/km3pipe/utils/h5extract.py
@@ -34,6 +34,19 @@ def main():
args = docopt(__doc__, version=kp.version)
+ default_flags = (
+ "--offline-header",
+ "--event-info... | h5extract everything as default | tamasgal_km3pipe | train | py |
8957c58e20a2458da4591d28760463d09b892bcd | diff --git a/clients/java/src/test/java/com/thoughtworks/selenium/ClientUnitTestSuite.java b/clients/java/src/test/java/com/thoughtworks/selenium/ClientUnitTestSuite.java
index <HASH>..<HASH> 100644
--- a/clients/java/src/test/java/com/thoughtworks/selenium/ClientUnitTestSuite.java
+++ b/clients/java/src/test/java/com/... | Stupid Maven bug; suites only get run if they extend TestCase
r<I> | SeleniumHQ_selenium | train | java |
a8ca9adfcf918d97bd9c4f4917c9c2c30df25cf7 | diff --git a/manifest.php b/manifest.php
index <HASH>..<HASH> 100755
--- a/manifest.php
+++ b/manifest.php
@@ -29,7 +29,7 @@ return array(
'label' => 'QTI test model',
'description' => 'TAO QTI test implementation',
'license' => 'GPL-2.0',
- 'version' => '16.2.3',
+ 'version' => '... | Bump to version <I> | oat-sa_extension-tao-testqti | train | php,php |
Subsets and Splits
Java Commits in Train Set
Queries for all entries where the diff_languages column is 'java', providing a filtered dataset but without deeper analysis.
Java Commits Test Data
Returns a subset of 5000 entries from the dataset where the programming language difference is Java, providing basic filtering for exploration.
Java Commits Sample
Retrieves the first 1,000 records where the 'diff_languages' column is 'java', providing limited insight into the specific data entries.
Java Commits Validation Sample
Retrieves a sample of entries from the validation dataset where the diff languages are Java, providing limited insight into specific Java-related data points.
Java Commits in Validation
This query retrieves a limited sample of entries from the validation dataset where the programming language difference is Java, providing basic filtering with minimal insight.
Java Commits Sample
This query retrieves a sample of 100 records where the 'diff_languages' is 'java', providing basic filtering but limited analytical value.
Java Commits Sample
Retrieves 100 samples where the language difference is Java, providing basic filtering but minimal analytical value.
Java Commits Sample
Retrieves 10 samples where the diff_languages column is 'java', providing basic examples of data entries with this specific language.
Java Commits Validation Sample
Retrieves 1,000 records where the differences in languages are marked as Java, providing a snapshot of that specific subset but limited to raw data.
Java Commits Sample
This query retrieves 1000 random samples from the dataset where the programming language is Java, offering limited insight beyond raw data.