hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
493118e1c5e54aef6bc802b25285555f8e00620e | diff --git a/webroot/img.php b/webroot/img.php
index <HASH>..<HASH> 100644
--- a/webroot/img.php
+++ b/webroot/img.php
@@ -1149,7 +1149,8 @@ EOD;
/**
* Load, process and output the image
*/
-$img->log("Incoming arguments: " . print_r(verbose(), 1))
+$img->log("PHP version: " . phpversion())
+ ->log("Incoming ar... | Add php version as output in verbose mode | mosbth_cimage | train |
6d224eeeb6e3409889dee6b16dbbfd92632f29cd | diff --git a/Tests/Twig/Extension/DataTablesTwigExtensionTest.php b/Tests/Twig/Extension/DataTablesTwigExtensionTest.php
index <HASH>..<HASH> 100644
--- a/Tests/Twig/Extension/DataTablesTwigExtensionTest.php
+++ b/Tests/Twig/Extension/DataTablesTwigExtensionTest.php
@@ -307,6 +307,18 @@ EOT;
}
/**
+ * T... | Clean up DataTables Twig extension | webeweb_jquery-datatables-bundle | train |
64a0b463b61f5615a77ff352ebf5d9da81ff89e3 | diff --git a/lib/perpetuity/mapper.rb b/lib/perpetuity/mapper.rb
index <HASH>..<HASH> 100644
--- a/lib/perpetuity/mapper.rb
+++ b/lib/perpetuity/mapper.rb
@@ -33,8 +33,8 @@ module Perpetuity
attribute_set.map(&:name)
end
- def self.index attribute
- data_source.index mapped_class, attribute_set[at... | Pass options to the index from the mapper | jgaskins_perpetuity | train |
acf2c62d81b4cff5446a75031535374f9ad71da5 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -39,7 +39,10 @@ function Cabal (storage, key, opts) {
}
this.key = key || null
- this.db = kappa(storage, { valueEncoding: json })
+ this.db = kappa(storage, {
+ maxFeeds: opts.maxFeeds,
+ valueEncoding: json
+... | Add an option to set the maxFeeds option of hypercore-protocol | cabal-club_cabal-core | train |
aaeda894ae5af41cdf5c0ab6f7fa5bf2ad4a9c01 | diff --git a/PHPCI/Controller/ProjectController.php b/PHPCI/Controller/ProjectController.php
index <HASH>..<HASH> 100644
--- a/PHPCI/Controller/ProjectController.php
+++ b/PHPCI/Controller/ProjectController.php
@@ -222,7 +222,27 @@ class ProjectController extends b8\Controller
$field = new Form\Element\Text('refer... | Fixing the add / edit project form to make the reference field validation more intelligent. Fixes #<I> | dancryer_PHPCI | train |
639b73948f5b29547aea3d2cff24dac219ef4388 | diff --git a/lib/active_record_shards/association_collection_connection_selection.rb b/lib/active_record_shards/association_collection_connection_selection.rb
index <HASH>..<HASH> 100644
--- a/lib/active_record_shards/association_collection_connection_selection.rb
+++ b/lib/active_record_shards/association_collection_c... | make .reload always go to the master
Also refactor some of the master/slave switch stuff | zendesk_active_record_shards | train |
764f9e7c15efa9df86b487371bba54b038276a6b | diff --git a/app/models/concerns/rubygem_searchable.rb b/app/models/concerns/rubygem_searchable.rb
index <HASH>..<HASH> 100644
--- a/app/models/concerns/rubygem_searchable.rb
+++ b/app/models/concerns/rubygem_searchable.rb
@@ -69,10 +69,10 @@ module RubygemSearchable
filtered do
# Main q... | Support advanced search with query string syntax
See complete list of supported syntax and their use:
<URL> | rubygems_rubygems.org | train |
c8f98320526513f411a75d00e6904c651fe7b50f | diff --git a/lxd/daemon.go b/lxd/daemon.go
index <HASH>..<HASH> 100644
--- a/lxd/daemon.go
+++ b/lxd/daemon.go
@@ -926,6 +926,9 @@ func (d *Daemon) startClusterTasks() {
// Auto-sync images across the cluster (daily)
d.clusterTasks.Add(autoSyncImagesTask(d))
+ // Forkdns server list refresh
+ d.clusterTasks.Add(n... | daemon: Adds forkdns server list refresh task to cluster tasks | lxc_lxd | train |
7d24284b16f50eef32c71542ba5dccb3da2712c1 | diff --git a/src/org/opencms/search/solr/CmsSolrFieldConfiguration.java b/src/org/opencms/search/solr/CmsSolrFieldConfiguration.java
index <HASH>..<HASH> 100644
--- a/src/org/opencms/search/solr/CmsSolrFieldConfiguration.java
+++ b/src/org/opencms/search/solr/CmsSolrFieldConfiguration.java
@@ -205,9 +205,6 @@ public cl... | Now there exist an API search method that returns all requested rows. | alkacon_opencms-core | train |
ac7861cbe622c3936738e39858eb22edbc51e581 | diff --git a/lib/dill/widgets.rb b/lib/dill/widgets.rb
index <HASH>..<HASH> 100644
--- a/lib/dill/widgets.rb
+++ b/lib/dill/widgets.rb
@@ -18,6 +18,17 @@ module Dill
end
end
end
+
+ require 'bigdecimal'
+
+ def Decimal(selector)
+ WidgetClass.new(selector) do
+ def value
+ ... | [widget] Add Decimal short form. | mojotech_capybara-ui | train |
5ac5d9f2a70f46850014822bd0f67a4411615882 | diff --git a/lib/mini_magick.rb b/lib/mini_magick.rb
index <HASH>..<HASH> 100644
--- a/lib/mini_magick.rb
+++ b/lib/mini_magick.rb
@@ -267,13 +267,22 @@ module MiniMagick
# pages (starting with 0). You can choose which page you want to manipulate. We default to the
# first page.
#
+ # If you would l... | Only convert the first page by default.
When converting between formats convert only the first page, if you
would like to convert all the pages use 'nil' or 'false' as your page. | minimagick_minimagick | train |
73adc015df810ffed103886dee7f970adba49178 | diff --git a/familybook.php b/familybook.php
index <HASH>..<HASH> 100644
--- a/familybook.php
+++ b/familybook.php
@@ -29,8 +29,9 @@ require './includes/session.php';
$controller=new WT_Controller_Familybook();
$controller
->pageHeader()
- ->addInlineJavascript('var pastefield; function paste_id(value) { pastefield... | Add javascript to resolve vertical line issues | fisharebest_webtrees | train |
e81b275790691e821259993d69ec6fcba6e7863e | diff --git a/lib/stylus.rb b/lib/stylus.rb
index <HASH>..<HASH> 100644
--- a/lib/stylus.rb
+++ b/lib/stylus.rb
@@ -73,10 +73,16 @@ module Stylus
@@compress = val
end
- # Compiles a given input - a `File`, `StringIO`, `String` or anything that responds to `read`.
- # Also accepts a hash of options th... | Inspecting the input object to extract a filename from it. | forgecrafted_ruby-stylus | train |
1672123b219793e0c0d42ee8b77abf06be34f471 | diff --git a/core/action_module.js b/core/action_module.js
index <HASH>..<HASH> 100644
--- a/core/action_module.js
+++ b/core/action_module.js
@@ -14,8 +14,6 @@ function ActionModule(){
var self = this;
this.type = 'action';
- this.running = false;
-
this.run = function(){
if(!this.running){
diff --git a/c... | Added 'running' boolean to PreyModule. Makes it cleaner for handling stop() in ActionModule's. | prey_prey-node-client | train |
60bd24cc83e5c1770fc8c4e34ed78690c11306da | diff --git a/command/agent/event_handler_test.go b/command/agent/event_handler_test.go
index <HASH>..<HASH> 100644
--- a/command/agent/event_handler_test.go
+++ b/command/agent/event_handler_test.go
@@ -66,7 +66,7 @@ func testEventScript(t *testing.T, script string) (string, string) {
_, err = scriptFile.Write([]byte... | command/agent/event_handler_test: fix missing Fatalf argument in testEventScript | hashicorp_serf | train |
22c5770f58eeebd3afccf1f98417159a18ac80fb | diff --git a/lib/rcoli.rb b/lib/rcoli.rb
index <HASH>..<HASH> 100644
--- a/lib/rcoli.rb
+++ b/lib/rcoli.rb
@@ -10,7 +10,7 @@ require 'rcoli/model'
def application(id, &block)
@program.name id
- @program.switch long: 'debug' do |s|
+ @program.switch :long => 'debug' do |s|
s.description "Turn on debugging... | Support of ruby <I> | jiripisa_rcoli | train |
722ee7534b4b47626a321a0e20b24b404bd3a668 | diff --git a/Classes/Step/DatabaseStep.php b/Classes/Step/DatabaseStep.php
index <HASH>..<HASH> 100644
--- a/Classes/Step/DatabaseStep.php
+++ b/Classes/Step/DatabaseStep.php
@@ -110,7 +110,7 @@ class DatabaseStep extends \Neos\Setup\Step\AbstractStep
$this->distributionSettings = Arrays::setValueByPath($this-... | BUGFIX: Adapt to changes in ``ConfigurationManager``
Some internals of the Flow ``ConfigurationManager`` changed,
making ``clearConfigurationCache`` the wrong method to call
in the setup, which could lead to broken configuration. | neos_setup | train |
25b8da43b556483b2bccf513ef927633ea22917c | diff --git a/lib/surrounded/context.rb b/lib/surrounded/context.rb
index <HASH>..<HASH> 100644
--- a/lib/surrounded/context.rb
+++ b/lib/surrounded/context.rb
@@ -49,7 +49,11 @@ module Surrounded
# >
define_method(:initialize){ |*args|
- setup_args.zip(args).each{ |role, object|
+ role_obj... | move role mapping to a specific task during initialization | saturnflyer_surrounded | train |
b513d6af702f7f136f5bfc05e73b1f437e62d534 | diff --git a/kubernetes_asyncio/config/kube_config.py b/kubernetes_asyncio/config/kube_config.py
index <HASH>..<HASH> 100644
--- a/kubernetes_asyncio/config/kube_config.py
+++ b/kubernetes_asyncio/config/kube_config.py
@@ -398,7 +398,7 @@ class ConfigNode(object):
def safe_get(self, key):
if (isinstance... | fix: show warning if config not loaded (#<I>) | tomplus_kubernetes_asyncio | train |
50ddb5bde85e37a0eb9a21f5ad55ed37b07bedb6 | diff --git a/go/test/endtoend/vtgate/misc_test.go b/go/test/endtoend/vtgate/misc_test.go
index <HASH>..<HASH> 100644
--- a/go/test/endtoend/vtgate/misc_test.go
+++ b/go/test/endtoend/vtgate/misc_test.go
@@ -763,7 +763,7 @@ func TestSubqueriesHasValues(t *testing.T) {
defer exec(t, conn, `delete from t1`)
exec(t, co... | Order by results in E2E subquery tests to ensure consistent results | vitessio_vitess | train |
70ef303f26ff1336a4bb350b1da9ae31fdb3b0a6 | diff --git a/neuropythy/vision/__init__.py b/neuropythy/vision/__init__.py
index <HASH>..<HASH> 100644
--- a/neuropythy/vision/__init__.py
+++ b/neuropythy/vision/__init__.py
@@ -10,7 +10,7 @@ from .retinotopy import (empirical_retinotopy_data, predicted_retinotopy_data, r
register_retinotopy,... | cleanup of persistence logic and other minor data structures | noahbenson_neuropythy | train |
9076e78654123a686b46b0c271ee19777951a113 | diff --git a/pkg/labels/selector.go b/pkg/labels/selector.go
index <HASH>..<HASH> 100644
--- a/pkg/labels/selector.go
+++ b/pkg/labels/selector.go
@@ -20,6 +20,8 @@ import (
"fmt"
"sort"
"strings"
+
+ "github.com/GoogleCloudPlatform/kubernetes/pkg/util"
)
// Selector represents a label selector.
@@ -105,40 +1... | change strValues's type to util.StringSet; rename Comparator to Operator; small syntax fix | kubernetes_kubernetes | train |
f08ddace38e96d7cdad9b0da0be48f79a5208cd6 | diff --git a/tfrddlsim/__init__.py b/tfrddlsim/__init__.py
index <HASH>..<HASH> 100644
--- a/tfrddlsim/__init__.py
+++ b/tfrddlsim/__init__.py
@@ -1,2 +1,2 @@
-__version__ = '0.3.0'
-__release__ = 'v0.3.0-alpha'
+__version__ = '0.4.1'
+__release__ = 'v0.4.1-alpha' | Release version <I>-alpha | thiagopbueno_tf-rddlsim | train |
0571fe67a285547bb6bd532b1bbd1403c14d3147 | diff --git a/config-main.go b/config-main.go
index <HASH>..<HASH> 100644
--- a/config-main.go
+++ b/config-main.go
@@ -37,7 +37,7 @@ import (
//
var configCmd = cli.Command{
Name: "config",
- Usage: "Add new alias to default configuration file [~/.mc/config.json]",
+ Usage: "Modify, add alias, oauth into defaul... | Turn off coloring when terminals are not tty even for os.Stdout | minio_mc | train |
3c908826eb5244a4aee1d4a671ab2c44e2444a0f | diff --git a/library/HelloSign/Test/AccountTest.php b/library/HelloSign/Test/AccountTest.php
index <HASH>..<HASH> 100644
--- a/library/HelloSign/Test/AccountTest.php
+++ b/library/HelloSign/Test/AccountTest.php
@@ -32,12 +32,12 @@ class AccountTest extends AbstractTest
{
/**
* @expectedException HelloSign\E... | update account test, modify email to be deterministic | hellosign_hellosign-php-sdk | train |
592959aeee5d0c5c9d3b7a78722608e167c4ce73 | diff --git a/lib/odpt_common/string_ext.rb b/lib/odpt_common/string_ext.rb
index <HASH>..<HASH> 100644
--- a/lib/odpt_common/string_ext.rb
+++ b/lib/odpt_common/string_ext.rb
@@ -2,7 +2,7 @@
# @note 標準添付ライブラリの拡張
module OdptCommon::StringExt
- def process_train_information_text
+ def process_train_operation_text
... | <I>_<I> Rename method | osorubeki-fujita_odpt_common | train |
4d3779d80f55c345d51b0b20e8cdf7e254473187 | diff --git a/datapackage_pipelines/web/server.py b/datapackage_pipelines/web/server.py
index <HASH>..<HASH> 100644
--- a/datapackage_pipelines/web/server.py
+++ b/datapackage_pipelines/web/server.py
@@ -141,6 +141,17 @@ def main():
markdown=markdown)
+@blueprint.route("api/raw/status")
+... | added `api/raw/status` server endpoint (#<I>)
* added api/raw/status server endpoint
* remove additional attributes | frictionlessdata_datapackage-pipelines | train |
4266682dd26a8ca596bd6f0d2398ef0d7988acf3 | diff --git a/mediasync/management/commands/syncmedia.py b/mediasync/management/commands/syncmedia.py
index <HASH>..<HASH> 100644
--- a/mediasync/management/commands/syncmedia.py
+++ b/mediasync/management/commands/syncmedia.py
@@ -31,7 +31,9 @@ def compress(data):
zfile = gzip.GzipFile(mode='wb', compresslevel=6, ... | update to use boto instead of Amazon's S3.py example file | sunlightlabs_django-mediasync | train |
9ed64f77774d1bee86abfec91d5651fdece9cb94 | diff --git a/spec/gl-matrix/vec3-spec.js b/spec/gl-matrix/vec3-spec.js
index <HASH>..<HASH> 100644
--- a/spec/gl-matrix/vec3-spec.js
+++ b/spec/gl-matrix/vec3-spec.js
@@ -83,6 +83,18 @@ describe("vec3", function() {
it("should return out", function() { expect(result).toBe(out); });
});
+
+ ... | Fixes #<I> - Corrects vec3.transformMat4 to divide by w | toji_gl-matrix | train |
e6240ce28abb7eddf91358b14143f33c8e320a5e | diff --git a/src/nwmatcher.js b/src/nwmatcher.js
index <HASH>..<HASH> 100644
--- a/src/nwmatcher.js
+++ b/src/nwmatcher.js
@@ -126,7 +126,7 @@ NW.Dom = (function(global) {
(div.style.width = 1) &&
div.style.width != '1px';
div = null;
- return !!isStrict ? 'CSS1Compat' : 'BackCompat';
... | fixed Safari 2 detection of Strict/Quirks mode after merging of 'isQuirks' and 'compatMode' (kangax) | dperini_nwmatcher | train |
e31023678538fafeb53b6d351e69e6e8dd7ac31e | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,7 @@ This option (`'views'`) specifies if the view integration is enabled so you can
##### CommonMark Extensions
-This option (`'extensions'`) specifies what extensions will be automatically enabled. Simply... | Use the table extension by default, only | GrahamCampbell_Laravel-Markdown | train |
66f23cf90767f6c62d5e4d0c2348020d904def04 | diff --git a/tests/test_util.py b/tests/test_util.py
index <HASH>..<HASH> 100644
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -584,7 +584,8 @@ def test_files():
# Expected output
output = [os.path.join(os.path.abspath(os.path.curdir), 'tests', 'data', s)
- for s in ['test1_22050.wav',
+... | fixed find_files test to account for new mp3 example in tests/data | librosa_librosa | train |
ba0cb73aab529d13f044b9cb6421b46bbd4714b6 | diff --git a/lib/config.js b/lib/config.js
index <HASH>..<HASH> 100644
--- a/lib/config.js
+++ b/lib/config.js
@@ -34,7 +34,7 @@ var variableProperties = ['encrypted', 'sockets', 'dataDirname', 'storage', 'bas
'username', 'password', 'debugMode', 'localUIHost', 'extra', 'rules', 'values', 'dnsCache', 'allowDisableShad... | refactor: http2 is required Node >= <I> | avwo_whistle | train |
74dd4307a53c73e5a743e4e9ff0859612e903665 | diff --git a/lib/validators.js b/lib/validators.js
index <HASH>..<HASH> 100644
--- a/lib/validators.js
+++ b/lib/validators.js
@@ -1,21 +1,23 @@
const EMAIL_REGEX = /^[^@\s]+@[^@\s]+\.[^@\s]+$/ // intentionally non-exhaustive
-function EnvError(input) {
- this.message = input
- this.stack = new Error().st... | Create custom errors my ES6 inheritance | af_envalid | train |
4466b13de9318755d3bae614a9e26a04c8750589 | diff --git a/composer.json b/composer.json
index <HASH>..<HASH> 100644
--- a/composer.json
+++ b/composer.json
@@ -19,7 +19,9 @@
"phpunit/phpunit": "^4.0 || ^5.0",
"guzzlehttp/guzzle": "^6.0",
"doctrine/cache": "^1.0",
- "league/flysystem": "^1.0"
+ "league/flysystem": "^1.0",
+ "psr/cache": "^1... | Add Psr6CacheStorage to tests | Kevinrob_guzzle-cache-middleware | train |
fbf99653f14273773e4437390ecdca736f495fb9 | diff --git a/activemodel/lib/active_model/serializers/xml.rb b/activemodel/lib/active_model/serializers/xml.rb
index <HASH>..<HASH> 100644
--- a/activemodel/lib/active_model/serializers/xml.rb
+++ b/activemodel/lib/active_model/serializers/xml.rb
@@ -25,7 +25,7 @@ module ActiveModel
def decorations
... | Attributes with :string type should not be given the type passed in model serialization options. Closes #<I> | rails_rails | train |
4c5e33a0f0b14c9f4c9607df46757d5e27a9ce2b | diff --git a/toothpick-runtime/src/main/java/toothpick/configuration/RuntimeCheckOnConfiguration.java b/toothpick-runtime/src/main/java/toothpick/configuration/RuntimeCheckOnConfiguration.java
index <HASH>..<HASH> 100644
--- a/toothpick-runtime/src/main/java/toothpick/configuration/RuntimeCheckOnConfiguration.java
+++ ... | Fix RuntimeCheckOnConfiguration for android lower than api <I> | stephanenicolas_toothpick | train |
7552ca0fcdf0435d680028e365c8c3e69915a373 | diff --git a/keanu-project/src/main/java/io/improbable/keanu/algorithms/sampling/Forward.java b/keanu-project/src/main/java/io/improbable/keanu/algorithms/sampling/Forward.java
index <HASH>..<HASH> 100644
--- a/keanu-project/src/main/java/io/improbable/keanu/algorithms/sampling/Forward.java
+++ b/keanu-project/src/main... | Optimised lambda section snapshot | improbable-research_keanu | train |
a24de696a150b1877b017c62d28728c354e08f1d | diff --git a/src/Sastrawi/Morphology/Disambiguator/DisambiguatorPrefixRule12.php b/src/Sastrawi/Morphology/Disambiguator/DisambiguatorPrefixRule12.php
index <HASH>..<HASH> 100644
--- a/src/Sastrawi/Morphology/Disambiguator/DisambiguatorPrefixRule12.php
+++ b/src/Sastrawi/Morphology/Disambiguator/DisambiguatorPrefixRule... | disambiguator prefix rule <I> : improve docblock | sastrawi_sastrawi | train |
cd6c961055ce485bf58751940065d8de05ff1545 | diff --git a/lib/cli/cli.js b/lib/cli/cli.js
index <HASH>..<HASH> 100644
--- a/lib/cli/cli.js
+++ b/lib/cli/cli.js
@@ -8,7 +8,6 @@ const cliUtil = require('./util');
const fs = require('fs');
const set = require('lodash.set');
const get = require('lodash.get');
-const urlValidator = require('valid-url');
const find... | Handle URLs with Arabic characters (#<I>) | sitespeedio_sitespeed.io | train |
14527521c4073cdae03491052cb15ee5ba2241a1 | diff --git a/lib/reform/form/active_model/validations.rb b/lib/reform/form/active_model/validations.rb
index <HASH>..<HASH> 100644
--- a/lib/reform/form/active_model/validations.rb
+++ b/lib/reform/form/active_model/validations.rb
@@ -48,6 +48,18 @@ module Reform
send(name)
end
+ # def errors(*ar... | don't return the Validator but Result. | trailblazer_reform-rails | train |
7c197bb8ee7b35f8343749ceca8b1d8bfd586023 | diff --git a/lib/sunspot/rails/configuration.rb b/lib/sunspot/rails/configuration.rb
index <HASH>..<HASH> 100644
--- a/lib/sunspot/rails/configuration.rb
+++ b/lib/sunspot/rails/configuration.rb
@@ -101,62 +101,7 @@ module Sunspot #:nodoc:
@auto_commit_after_request ||=
user_configuration_from_key(... | removed pid_path, conf_path, solr_home implementation from configuration | sunspot_sunspot | train |
7bd880a082bb450a8d77ab5a40071f1b07fb1f9a | diff --git a/definitions/npm/enzyme_v3.x.x/flow_v0.53.x-/enzyme_v3.x.x.js b/definitions/npm/enzyme_v3.x.x/flow_v0.53.x-/enzyme_v3.x.x.js
index <HASH>..<HASH> 100644
--- a/definitions/npm/enzyme_v3.x.x/flow_v0.53.x-/enzyme_v3.x.x.js
+++ b/definitions/npm/enzyme_v3.x.x/flow_v0.53.x-/enzyme_v3.x.x.js
@@ -4,7 +4,7 @@ decla... | [enzyme_v3.x.x] improve EnzymeSelector to accept React.AbstractComponent (#<I>) | flow-typed_flow-typed | train |
1717fbc1bad8d62a795d00d129f1a2445532cf4b | diff --git a/lib/geoengineer/resources/aws/s3/aws_s3_bucket_notification.rb b/lib/geoengineer/resources/aws/s3/aws_s3_bucket_notification.rb
index <HASH>..<HASH> 100644
--- a/lib/geoengineer/resources/aws/s3/aws_s3_bucket_notification.rb
+++ b/lib/geoengineer/resources/aws/s3/aws_s3_bucket_notification.rb
@@ -6,11 +6,1... | Update aws_s3_bucket_notification.rb
This allows the resource to be initialized with the terraform id or the bucket name, if that is known... | coinbase_geoengineer | train |
0f4746450bf079593858e01fa7894cc61dbfde5a | diff --git a/merger/src/main/java/com/metamx/druid/merger/coordinator/RemoteTaskRunner.java b/merger/src/main/java/com/metamx/druid/merger/coordinator/RemoteTaskRunner.java
index <HASH>..<HASH> 100644
--- a/merger/src/main/java/com/metamx/druid/merger/coordinator/RemoteTaskRunner.java
+++ b/merger/src/main/java/com/met... | RemoteTaskRunner: null check on workerData | apache_incubator-druid | train |
5e22ab9dfad3ed5867a2d05f804aad12a79596fd | diff --git a/gtk/gtk.go b/gtk/gtk.go
index <HASH>..<HASH> 100644
--- a/gtk/gtk.go
+++ b/gtk/gtk.go
@@ -36,17 +36,6 @@ static int callback_info_get_current(callback_info* cbi) {
return 0;
}
-#ifdef __x86_64__
-static int _callback(void *data, ...);
-asm(
-".text\n"
-" .type _callback_amd64, @function\n"
-"_callback... | enable <I>bit. however, i don't have the environment. everyone, please check it and report. | mattn_go-gtk | train |
fae29d08eb6ee02e342cedb162a09a8513f4b63a | diff --git a/test/mocha.js b/test/mocha.js
index <HASH>..<HASH> 100644
--- a/test/mocha.js
+++ b/test/mocha.js
@@ -61,9 +61,9 @@ mocha.describe('globals', () => {
})
assert.throws(_ => mocha.after(),
- 'cannot call "after" outside of describe()')
+ new Error('cannot call "after" outside of describe()'))
assert.t... | make tests pass in node <I> | tapjs_node-tap | train |
7f31f8c0c826ba028c21baf1c64e78fa04be260d | diff --git a/aeron-driver/src/main/java/io/aeron/driver/ext/DebugSendChannelEndpoint.java b/aeron-driver/src/main/java/io/aeron/driver/ext/DebugSendChannelEndpoint.java
index <HASH>..<HASH> 100644
--- a/aeron-driver/src/main/java/io/aeron/driver/ext/DebugSendChannelEndpoint.java
+++ b/aeron-driver/src/main/java/io/aero... | [Java] Tidy up. | real-logic_aeron | train |
18cc456f467950294236b5d066dca2a34c6b7e8d | diff --git a/src/main/java/org/primefaces/PrimeFaces.java b/src/main/java/org/primefaces/PrimeFaces.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/primefaces/PrimeFaces.java
+++ b/src/main/java/org/primefaces/PrimeFaces.java
@@ -194,7 +194,7 @@ public class PrimeFaces {
/**
* Removes the multiVie... | #<I> add JavaDoc for cleanXxxxState - methods in PrimeFaces.class | primefaces_primefaces | train |
c684662c5543e12fa7edeb52fac8c2cd83a01d4b | diff --git a/addon/helpers/utils.js b/addon/helpers/utils.js
index <HASH>..<HASH> 100644
--- a/addon/helpers/utils.js
+++ b/addon/helpers/utils.js
@@ -6,6 +6,13 @@ function save() {
function saveIfChanged(key) {
this._super.apply(this, arguments);
+ // TODO: v2.0 - Remove workaround and drop support for 2.12.x
+... | Add workaround for <I>.x support | funkensturm_ember-local-storage | train |
d3e6ae33b43889974b19d070448dcd906a377bc4 | diff --git a/gnupg/_meta.py b/gnupg/_meta.py
index <HASH>..<HASH> 100644
--- a/gnupg/_meta.py
+++ b/gnupg/_meta.py
@@ -538,7 +538,7 @@ class GPGBase(object):
if passphrase: cmd.append('--batch --passphrase-fd 0')
if self.use_agent: cmd.append('--use-agent')
- else: cmd.append('--no-use-agent'... | no-use-agent is obsolete for GPG2
(cherry picked from commit <I>fd<I>c<I>e<I>a<I>c8f<I>df1c<I>c2d0d) | isislovecruft_python-gnupg | train |
8ac475186b6a8f18760f907cc697c60e275d49de | diff --git a/tdaemon.py b/tdaemon.py
index <HASH>..<HASH> 100755
--- a/tdaemon.py
+++ b/tdaemon.py
@@ -137,7 +137,7 @@ class Watcher(object):
elif self.test_program == 'phpunit':
cmd = 'phpunit'
elif self.test_program == 'sphinx':
- cmd = 'make.bat html'
+ cmd = 'mak... | Remove ".bat" call. should work both on Windows and *NIX platforms. | brunobord_tdaemon | train |
a93ea924a091ca35f6330c6ee157daf00d075ba6 | diff --git a/lib/xmlize.php b/lib/xmlize.php
index <HASH>..<HASH> 100644
--- a/lib/xmlize.php
+++ b/lib/xmlize.php
@@ -1,6 +1,7 @@
<?php
-/* xmlize() is by Hans Anderson, me@hansanderson.com
+/**
+ * xmlize.php - xmlize() is by Hans Anderson, {@link http://www.hansanderson.com/contact/}
*
* Ye Ole "Feel Free To ... | Converted comments to phpdoc style comments | moodle_moodle | train |
87ec4fa66835e385d6e50715c8de173150298962 | diff --git a/pyvista/plotting/plotting.py b/pyvista/plotting/plotting.py
index <HASH>..<HASH> 100644
--- a/pyvista/plotting/plotting.py
+++ b/pyvista/plotting/plotting.py
@@ -47,11 +47,12 @@ SUPPORTED_FORMATS = [".png", ".jpeg", ".jpg", ".bmp", ".tif", ".tiff"]
def close_all():
"""Close all open/active plotters... | MAINT: Remove ref on close (#<I>)
* MAINT: Remove ref on close
* FIX: No need for pop | vtkiorg_vtki | train |
9f4e52f5c8067904c275cdf2f9fb0ec290fc6470 | diff --git a/lib/chef/provider/group/groupadd.rb b/lib/chef/provider/group/groupadd.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/provider/group/groupadd.rb
+++ b/lib/chef/provider/group/groupadd.rb
@@ -126,7 +126,8 @@ class Chef
def groupadd_options
opts = ""
- opts << " -r" if @new_reso... | Solaris doesn't support -r for users or group. | chef_chef | train |
0d5ba9c773299385195f6c32e5bf4de55d3494a6 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -4,6 +4,8 @@ import sys
from setuptools import setup, find_packages
+from sphinx.setup_command import BuildDoc
+
def local_file(*name):
return os.path.join(
@@ -88,9 +90,11 @@ INSTALL_REQUIRES = [
if sys.version_... | Better support for building sphinx docs. | sixty-north_cosmic-ray | train |
35c56b39db996d1e3a428e2ee13d48cd64ef2029 | diff --git a/src/AnyDataset.php b/src/AnyDataset.php
index <HASH>..<HASH> 100644
--- a/src/AnyDataset.php
+++ b/src/AnyDataset.php
@@ -92,7 +92,7 @@ class AnyDataset
}
$ext = pathinfo($file, PATHINFO_EXTENSION);
- if (empty($ext)) {
+ if (empty($ext) && substr($file, 0,... | Explicit support for php://memory | byjg_anydataset | train |
5bf53c5ec39f80e0d9d0a9ff9ed437d4bafcb0dd | diff --git a/test/integration/test_download.py b/test/integration/test_download.py
index <HASH>..<HASH> 100644
--- a/test/integration/test_download.py
+++ b/test/integration/test_download.py
@@ -59,7 +59,9 @@ class TestDownload(Downloader):
with tmpdir.as_cwd():
self.download('--unzipdir', 'OMERO.... | Fix incorrect test for existence of directory
tmpdir.ensure creates a path and returns it instead of testing for it's existence | ome_omego | train |
926607f411988dd0d90c4ce4befe7515cce3f6b7 | diff --git a/lib/graphql/batch/loader.rb b/lib/graphql/batch/loader.rb
index <HASH>..<HASH> 100644
--- a/lib/graphql/batch/loader.rb
+++ b/lib/graphql/batch/loader.rb
@@ -2,7 +2,9 @@ module GraphQL::Batch
class Loader
def self.for(*group_args)
loader_key = [self].concat(group_args)
- Executor.curren... | Allow loaders to be re-used so they can cache loads. (#<I>) | Shopify_graphql-batch | train |
ef694f6cc77674fc119b8bfa32c74aa456b84eb6 | diff --git a/test/unit/event.js b/test/unit/event.js
index <HASH>..<HASH> 100644
--- a/test/unit/event.js
+++ b/test/unit/event.js
@@ -2448,6 +2448,12 @@ if ( hasPHP ) {
(function(){
// This code must be run before DOM ready!
+ if ( QUnit.urlParams.amd ) {
+
+ // If we load jQuery through requirejs DOM will be al... | Don't execute DOM ready tests in AMD mode (they aren't loaded before DOM ready). Close gh-<I>.
Conflicts:
src/manipulation.js | jquery_jquery | train |
75524762f9eed7a33294bf02a2f1af681c6a6353 | diff --git a/app/forms/hyrax/forms/admin_set_form.rb b/app/forms/hyrax/forms/admin_set_form.rb
index <HASH>..<HASH> 100644
--- a/app/forms/hyrax/forms/admin_set_form.rb
+++ b/app/forms/hyrax/forms/admin_set_form.rb
@@ -4,8 +4,7 @@ module Hyrax
self.model_class = AdminSet
self.terms = [:title, :description... | Tidying up Yard warning
```console
[warn]: @param tag has unknown parameter name: permission_template
in file `app/forms/hyrax/forms/admin_set_form.rb' near line 9
``` | samvera_hyrax | train |
ecc1eafed92d7acd026a1655048efde7c86a3071 | diff --git a/src/main/java/net/dv8tion/jda/api/managers/GuildController.java b/src/main/java/net/dv8tion/jda/api/managers/GuildController.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/dv8tion/jda/api/managers/GuildController.java
+++ b/src/main/java/net/dv8tion/jda/api/managers/GuildController.java
@@ -534,6... | Message deletion days validation on member ban (#<I>)
* Message deletion days validation on member ban | DV8FromTheWorld_JDA | train |
2edb9e31a685744c28ba006ebeb36a146c2c645b | diff --git a/tests/unit/test_karma.py b/tests/unit/test_karma.py
index <HASH>..<HASH> 100644
--- a/tests/unit/test_karma.py
+++ b/tests/unit/test_karma.py
@@ -62,28 +62,20 @@ class TestMongoDBKarma:
class TestSQLiteKarma:
- finalizers = []
-
- @classmethod
- def teardown_class(cls):
- for finalizer in cls.finaliz... | Use pytest fixture for sqlite karma as well. | yougov_pmxbot | train |
2755e5583841c39e3efdc5cb9775941ce83c37c8 | diff --git a/src/Stagehand/TestRunner.php b/src/Stagehand/TestRunner.php
index <HASH>..<HASH> 100644
--- a/src/Stagehand/TestRunner.php
+++ b/src/Stagehand/TestRunner.php
@@ -172,11 +172,11 @@ OPTIONS:
Preload <file> as a PHP script.
-a
- Watch for changes in one or more directories and run tests in the ... | Replaced the word watch with monitor. | piece_stagehand-testrunner | train |
0b3abe192a33fd6aab0ecc1c3006a832654f4f50 | diff --git a/Classes/Core/Testbase.php b/Classes/Core/Testbase.php
index <HASH>..<HASH> 100644
--- a/Classes/Core/Testbase.php
+++ b/Classes/Core/Testbase.php
@@ -873,8 +873,6 @@ class Testbase
*/
public function getPackagesPath(): string
{
- // @hack: remove me
- return getcwd() . '/vendo... | [BUGFIX] Remove check for dealing with symlinks | TYPO3_testing-framework | train |
55cda2fd4e7ba79c317a75f3f4055c3eae1c1c19 | diff --git a/taxtastic/refpkg.py b/taxtastic/refpkg.py
index <HASH>..<HASH> 100644
--- a/taxtastic/refpkg.py
+++ b/taxtastic/refpkg.py
@@ -393,7 +393,7 @@ class Refpkg(object):
self.update_file('tree', name)
self._log('Rerooting refpkg')
- def update_phylo_model(self, stats_type, stats_fi... | Cleaned up Aaron's fasttree parsing code a little. | fhcrc_taxtastic | train |
f01e0fe4f79fc2ae35e32d70c06dd95d504ebcf1 | diff --git a/src/Factory/Invoice.php b/src/Factory/Invoice.php
index <HASH>..<HASH> 100644
--- a/src/Factory/Invoice.php
+++ b/src/Factory/Invoice.php
@@ -506,6 +506,9 @@ class Invoice
} elseif ($mKey instanceof \stdClass) {
$this->oCallbackData = new CallbackData($mKey);
} else {
+ ... | Prevents phpe rror when passing in key/values to invoice and invoice item factories setCallbackData methods | nails_module-invoice | train |
9634ab9dc5fa47885527c57d499c18ad9f0c0ab9 | diff --git a/Extra/Pixlr.php b/Extra/Pixlr.php
index <HASH>..<HASH> 100644
--- a/Extra/Pixlr.php
+++ b/Extra/Pixlr.php
@@ -64,7 +64,8 @@ class Pixlr
$this->validFormats = array('jpg', 'png');
$this->allowHosts = array(
- '173.255.196.130' // pilxr host
+ '173.255.196.130', ... | Add a new pilx hosts | sonata-project_SonataMediaBundle | train |
82d5af48fbdbbb7d4a8d37b71d056f930d166e5b | diff --git a/web/concrete/themes/dashboard/view.php b/web/concrete/themes/dashboard/view.php
index <HASH>..<HASH> 100644
--- a/web/concrete/themes/dashboard/view.php
+++ b/web/concrete/themes/dashboard/view.php
@@ -1,45 +1,47 @@
-<?
+<?php
defined('C5_EXECUTE') or die("Access Denied.");
$this->inc('elements/header.ph... | Avoid deprecated methods and accessing undefined vars in dashboard view
Former-commit-id: 1f<I>afc8c<I>b<I>a2ad<I>a9e<I>c4d<I>d1d9
Former-commit-id: bf8f9a<I>f<I>c8a<I>ec<I>fc<I>dcb7 | concrete5_concrete5 | train |
2b4637bdd754d143c3be0dc3680d5121874edafc | diff --git a/lib/ember-cli/app.rb b/lib/ember-cli/app.rb
index <HASH>..<HASH> 100644
--- a/lib/ember-cli/app.rb
+++ b/lib/ember-cli/app.rb
@@ -5,6 +5,8 @@ module EmberCLI
ADDON_VERSION = "0.0.9"
EMBER_CLI_VERSION = "~> 0.1.5"
+ class BuildError < StandardError; end
+
attr_reader :name, :options, :pi... | Raise BuildError when EmberCLI app fails to build
Fix #<I> | thoughtbot_ember-cli-rails | train |
0a6652836366002eff05768605362c8f4d215b81 | diff --git a/cellpy/scripts/iterate_rawfiles.py b/cellpy/scripts/iterate_rawfiles.py
index <HASH>..<HASH> 100644
--- a/cellpy/scripts/iterate_rawfiles.py
+++ b/cellpy/scripts/iterate_rawfiles.py
@@ -1,12 +1,11 @@
-import sys
+"""Script for iterating through data sets (raw-files) and extracting C.E."""
import os
from ... | finishes script for iterating through raw-files | jepegit_cellpy | train |
96af34d8c15b879df2c54fe2706c098abfcc79f1 | diff --git a/tests/test_elastic_doc_manager.py b/tests/test_elastic_doc_manager.py
index <HASH>..<HASH> 100644
--- a/tests/test_elastic_doc_manager.py
+++ b/tests/test_elastic_doc_manager.py
@@ -60,7 +60,7 @@ class elastic_docManagerTester(unittest.TestCase):
docc = {'_id': '1', 'name': 'John', 'ns': 'test.tes... | modified queries for test_elastic_doc_manager to happen only on "test.test" namespace so tests don't fail if database is non-empty for other indices | yougov_mongo-connector | train |
5852325cd3d7b75f4a957fa965e1e37affa85a98 | diff --git a/gremlin-python/src/main/jython/radish/feature_steps.py b/gremlin-python/src/main/jython/radish/feature_steps.py
index <HASH>..<HASH> 100644
--- a/gremlin-python/src/main/jython/radish/feature_steps.py
+++ b/gremlin-python/src/main/jython/radish/feature_steps.py
@@ -25,8 +25,9 @@ from gremlin_python.process... | TINKERPOP-<I> Get all count() tests working
Needed to add support for cleaning up traversal strings to more properly handle reserved python words. | apache_tinkerpop | train |
79d9b1f4b3bc8f891037c137156de098b807b7bd | diff --git a/scrappers/tmdb.js b/scrappers/tmdb.js
index <HASH>..<HASH> 100755
--- a/scrappers/tmdb.js
+++ b/scrappers/tmdb.js
@@ -62,27 +62,36 @@ var search = function(movie, cb) {
movie.code = infos[index].id
+ //default
+ infos = infos[index]
+ movie.title = infos.title !== ... | Improved code, added english overview if no french founded | ezseed_watcher | train |
9536e14782481a5b107b2a01f2eaee0cf1f924fd | diff --git a/injector/wtf-injector-chrome/debugger.js b/injector/wtf-injector-chrome/debugger.js
index <HASH>..<HASH> 100644
--- a/injector/wtf-injector-chrome/debugger.js
+++ b/injector/wtf-injector-chrome/debugger.js
@@ -143,7 +143,12 @@ Debugger.prototype.onDetach_ = function(source) {
* @private
*/
Debugger.pr... | Fixing detection behavior of debugger options.
Fixes lack of debugger on tabs. Also enabling by default. | google_tracing-framework | train |
d8ab3b829025a84a3eafcc793c00c66990be1548 | diff --git a/tests/test_diff_text.py b/tests/test_diff_text.py
index <HASH>..<HASH> 100644
--- a/tests/test_diff_text.py
+++ b/tests/test_diff_text.py
@@ -1325,6 +1325,15 @@ class DeepDiffTextTestCase(unittest.TestCase):
result = {'unprocessed': ['root: Bad Object and Bad Object']}
self.assertEqual(dd... | Adding FAILING test as provided by finnhughes | seperman_deepdiff | train |
e8678fe8ac6e03071f6c436008aec015cbf31d8b | diff --git a/src/sap.m/src/sap/m/library.js b/src/sap.m/src/sap/m/library.js
index <HASH>..<HASH> 100644
--- a/src/sap.m/src/sap/m/library.js
+++ b/src/sap.m/src/sap/m/library.js
@@ -3118,8 +3118,7 @@ sap.ui.define([
* @since 1.97
* @name sap.m.p13n.IContent
* @interface
- * @private
- * @ui5-restricted
+ *... | [INTERNAL] sap.m.p<I>n.BasePanel: documentation improvements
- Set BasePanel to public + abstract to properly show inherited methods
- Include panel derivations in the docuindex.json to reference the
central example
BCP: <I>
Change-Id: I<I>b<I>ced4b9c<I>fbf<I>d<I>a<I>defe6 | SAP_openui5 | train |
a1c4aaa85d39a56cde516c0a1b31a45f1806a28c | diff --git a/lib/weary/request.rb b/lib/weary/request.rb
index <HASH>..<HASH> 100644
--- a/lib/weary/request.rb
+++ b/lib/weary/request.rb
@@ -92,7 +92,7 @@ module Weary
end
def basic_auth(*credentials)
- unless credentials.empty?
+ if !credentials.empty?
@basic_auth = true
use W... | Unless is such a pita | mwunsch_weary | train |
eca49092bfe379cb3cacbbeac5871ecf2179038f | diff --git a/src/collapse-whitespace.js b/src/collapse-whitespace.js
index <HASH>..<HASH> 100755
--- a/src/collapse-whitespace.js
+++ b/src/collapse-whitespace.js
@@ -25,6 +25,14 @@
* THE SOFTWARE.
*/
+function containsOnlySpaces(text) {
+ if (!text) return false;
+ for (let i = 0; i < text.length; i++) {
+ ... | Fix case where multiple blocks result in multiple spaces being added to MD output | laurent22_joplin-turndown | train |
ea618e36907d8f6ec084fe00839d3ca8b87b49f2 | diff --git a/matrix_client/api.py b/matrix_client/api.py
index <HASH>..<HASH> 100644
--- a/matrix_client/api.py
+++ b/matrix_client/api.py
@@ -379,10 +379,11 @@ class MatrixHttpApi(object):
def forget_room(self, room_id):
"""Perform POST /rooms/$room_id/forget
+
Args:
room_id(str):... | Fix docstring and adjust `_send` call slightly | matrix-org_matrix-python-sdk | train |
57ca764134c5fca243c7739634a213f84bad895e | diff --git a/pypet/tests/backwards_compat_test.py b/pypet/tests/backwards_compat_test.py
index <HASH>..<HASH> 100644
--- a/pypet/tests/backwards_compat_test.py
+++ b/pypet/tests/backwards_compat_test.py
@@ -13,7 +13,7 @@ import pypet
import platform
class LoadOldTrajectoryTest(unittest.TestCase):
- @unittest.ski... | fixed test skipping for backwards compat test | SmokinCaterpillar_pypet | train |
65dd3a00f025157590b4f599d7c78533e6b4fabb | diff --git a/src/fs/Temp.php b/src/fs/Temp.php
index <HASH>..<HASH> 100644
--- a/src/fs/Temp.php
+++ b/src/fs/Temp.php
@@ -6,7 +6,7 @@ namespace sndsgd\fs;
* Temp file and directory utility methods
*
* Note: the creation of both directores and files is done from this class
- * so any created paths can be register... | add ability to create temp files with extensions (#<I>) | sndsgd_fs | train |
7f9982af1e942fe6e09bc2c680f19935e1b6403a | diff --git a/src/main/java/com/blade/server/netty/RouteMethodHandler.java b/src/main/java/com/blade/server/netty/RouteMethodHandler.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/blade/server/netty/RouteMethodHandler.java
+++ b/src/main/java/com/blade/server/netty/RouteMethodHandler.java
@@ -314,7 +314,6 @@ p... | :bug: fixed hook response not write | lets-blade_blade | train |
ca62d8438fda76a031e0e72a60fa52abfbdc65d7 | diff --git a/lib/magic_grid/html_grid.rb b/lib/magic_grid/html_grid.rb
index <HASH>..<HASH> 100644
--- a/lib/magic_grid/html_grid.rb
+++ b/lib/magic_grid/html_grid.rb
@@ -12,6 +12,7 @@ module MagicGrid
def render(controller, view, &block)
@controller ||= controller
@view ||= view
+ @spinner_draw... | Extract spinner_generator proc as method | rmg_magic_grid | train |
b7e36f46d3a636d1cff015bca194177207cfeef8 | diff --git a/sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/EncryptSQLRewriteEngine.java b/sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/EncryptSQLRewriteEngine.java
index <HASH>..<HASH> 100644
--- a/sharding-core/sharding-core-rewrite... | for #<I>, refactor EncryptSQLRewriteEngine | apache_incubator-shardingsphere | train |
626634ef6cdde5582ac15e382fcde9cb48be4fb5 | diff --git a/aiohttp/worker.py b/aiohttp/worker.py
index <HASH>..<HASH> 100644
--- a/aiohttp/worker.py
+++ b/aiohttp/worker.py
@@ -109,14 +109,26 @@ class GunicornWebWorker(base.Worker):
yield from self.close()
- def init_signal(self):
- # init new signaling
- self.loop.add_signal_handler(... | Fix the code to use event loop signaling API | aio-libs_aiohttp | train |
73c7b6cb6f1cdfeb52b325075ca66b35999ad171 | diff --git a/common/src/main/java/tachyon/client/FileSystemMasterClient.java b/common/src/main/java/tachyon/client/FileSystemMasterClient.java
index <HASH>..<HASH> 100644
--- a/common/src/main/java/tachyon/client/FileSystemMasterClient.java
+++ b/common/src/main/java/tachyon/client/FileSystemMasterClient.java
@@ -128,3... | Implement some methods in File System Master Client. | Alluxio_alluxio | train |
1d14825f81e2ec191b85110d14fdd5604209345b | diff --git a/telemetry/telemetry/core/timeline/model.py b/telemetry/telemetry/core/timeline/model.py
index <HASH>..<HASH> 100644
--- a/telemetry/telemetry/core/timeline/model.py
+++ b/telemetry/telemetry/core/timeline/model.py
@@ -43,10 +43,11 @@ class TimelineModel(object):
if self._frozen:
raise Exception... | Fixed generation of TimelineModel._all_events.
- Events were added recursively to _all_events during AddEvent for root events
- Asynchronous events that were added later on by the importer were not included.
- Fixed by moving the recursive population of _all_events to DidFinishRecording
BUG=<I>
Review URL: <URL> | catapult-project_catapult | train |
692d329fda2ffbbe570ec30d4e60d6fb548eb4ab | diff --git a/spec/integration/api_spec.rb b/spec/integration/api_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/integration/api_spec.rb
+++ b/spec/integration/api_spec.rb
@@ -1,4 +1,4 @@
-require "#{File.dirname(__FILE__)}/../spec_helper"
+require 'spec_helper'
describe SQLTree, :API do
diff --git a/spec/integrati... | Use require 'spec_helper' and rely on the LOAD_PATH instead of using a relative path. | wvanbergen_sql_tree | train |
c7a54784a3641898c5fcee84ff6f365e23d859e3 | diff --git a/app/models/manager_refresh/inventory_object_lazy.rb b/app/models/manager_refresh/inventory_object_lazy.rb
index <HASH>..<HASH> 100644
--- a/app/models/manager_refresh/inventory_object_lazy.rb
+++ b/app/models/manager_refresh/inventory_object_lazy.rb
@@ -68,7 +68,7 @@ module ManagerRefresh
private
... | Use skeletal index for skeletal precreate
Use skeletal index for skeletal precreate
(transferred from ManageIQ/manageiq@8cfba<I>c<I>b<I>d<I>a4fd<I>c1e<I>bc3d3) | ManageIQ_inventory_refresh | train |
e1edbb402617aaa14178460c765ba975fed72bdc | diff --git a/app/addons/config/views.js b/app/addons/config/views.js
index <HASH>..<HASH> 100644
--- a/app/addons/config/views.js
+++ b/app/addons/config/views.js
@@ -17,10 +17,7 @@ define([
"addons/fauxton/components"
],
function(app, FauxtonAPI, Config, Components) {
- var Views ={},
- Events = {};
-
- Vi... | Fix missing section name if deleting the first item
- refetch collection and rerender view after a delete
- use global Eventbus for config
closes COUCHDB-<I> | apache_couchdb-fauxton | train |
46eadbb89511f896c1372bd7ea7ddf7e28d4250c | diff --git a/handlers/routeservice.go b/handlers/routeservice.go
index <HASH>..<HASH> 100644
--- a/handlers/routeservice.go
+++ b/handlers/routeservice.go
@@ -163,45 +163,45 @@ func CreateDomainAllowlist(allowlist []string) (map[string]struct{}, error) {
for _, entry := range allowlist {
+ // canonicalize host n... | Split function for sanitization and fqdn hostname stripping | cloudfoundry_gorouter | train |
12751d5be8ce7c09adc265c4aa0d57fc2817db1e | diff --git a/fixtures/test_repo.go b/fixtures/test_repo.go
index <HASH>..<HASH> 100644
--- a/fixtures/test_repo.go
+++ b/fixtures/test_repo.go
@@ -1,33 +1,73 @@
package fixtures
import (
+ "fmt"
+ "io/ioutil"
"os"
"path/filepath"
+
+ "github.com/github/hub/cmd"
)
+var pwd string
+
+func init() {
+ // need to... | Clone test repo instead of querying on top of it | github_hub | train |
12be12020ed2ca937681a556d52e121fcb5cb436 | diff --git a/client/allocrunner/interfaces/task_lifecycle.go b/client/allocrunner/interfaces/task_lifecycle.go
index <HASH>..<HASH> 100644
--- a/client/allocrunner/interfaces/task_lifecycle.go
+++ b/client/allocrunner/interfaces/task_lifecycle.go
@@ -89,7 +89,7 @@ type TaskPrestartHook interface {
// Prestart is call... | simplify logic to check for vault read event
defer shutdown to cleanup after failed run | hashicorp_nomad | train |
4557e2db0aac3c5f0b49e5832c9c2ae8479c3b01 | diff --git a/src/Lstr/Silex/Database/DatabaseService.php b/src/Lstr/Silex/Database/DatabaseService.php
index <HASH>..<HASH> 100644
--- a/src/Lstr/Silex/Database/DatabaseService.php
+++ b/src/Lstr/Silex/Database/DatabaseService.php
@@ -47,11 +47,17 @@ class DatabaseService
public function query($sql, array $param... | Add the ability to execute multiple queries at once | lightster_lstr-silex-database | train |
9a1adc43cde5d8e06a50f0699a152414e3340b66 | diff --git a/src/ol/reproj.js b/src/ol/reproj.js
index <HASH>..<HASH> 100644
--- a/src/ol/reproj.js
+++ b/src/ol/reproj.js
@@ -8,30 +8,6 @@ goog.require('ol.proj');
/**
- * We need to employ more sophisticated solution
- * if the web browser antialiases clipping edges on canvas.
- *
- * Currently only Chrome does ... | No special raster reprojection handling for Chrome | openlayers_openlayers | train |
4dc7d4530602a587f7eaece510270702f7d48759 | diff --git a/src/Reader.php b/src/Reader.php
index <HASH>..<HASH> 100644
--- a/src/Reader.php
+++ b/src/Reader.php
@@ -10,6 +10,7 @@ namespace cebe\openapi;
use cebe\openapi\exceptions\IOException;
use cebe\openapi\exceptions\TypeErrorException;
use cebe\openapi\exceptions\UnresolvableReferenceException;
+use cebe\o... | Add exception in readFromJsonFile
The InvalidJsonPointerSyntaxException can be thrown in
readFromJsonFile, users need to know it in order to catch it. | cebe_php-openapi | train |
a72cdb5f0f39110c695a21ebcf97a737243018a0 | diff --git a/pelix/framework.py b/pelix/framework.py
index <HASH>..<HASH> 100644
--- a/pelix/framework.py
+++ b/pelix/framework.py
@@ -110,7 +110,7 @@ class Bundle(object):
self._state = Bundle.RESOLVED
# Registered services
- self.__registered_services = []
+ self.__registered_service... | Replace bundle services list by a set | tcalmant_ipopo | train |
6b44344161d51c1018a5f1acf6eb39122f4251ef | diff --git a/tools/run_tests/run_tests_matrix.py b/tools/run_tests/run_tests_matrix.py
index <HASH>..<HASH> 100755
--- a/tools/run_tests/run_tests_matrix.py
+++ b/tools/run_tests/run_tests_matrix.py
@@ -604,8 +604,8 @@ if __name__ == "__main__":
resultset.update(skipped_results)
report_utils.render_junit_... | use run_tests_invocations instead of aggregate tests | grpc_grpc | train |
3420269a9d88a99953baa44b3e26f83bc1f71189 | diff --git a/tasks/ssh_deploy.js b/tasks/ssh_deploy.js
index <HASH>..<HASH> 100644
--- a/tasks/ssh_deploy.js
+++ b/tasks/ssh_deploy.js
@@ -11,7 +11,7 @@
module.exports = function(grunt) {
grunt.registerTask('ssh_deploy', 'Begin Deployment', function() {
- this.async();
+ var done = this.async();
... | Fixed ssh-deploy task hangs on finish #3 | dasuchin_grunt-ssh-deploy | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.