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 |
|---|---|---|---|---|---|
357ceea9a8bb9eb0161227d0eed32d20c72ff0d2 | diff --git a/src/ImposterPlugin.php b/src/ImposterPlugin.php
index <HASH>..<HASH> 100644
--- a/src/ImposterPlugin.php
+++ b/src/ImposterPlugin.php
@@ -7,6 +7,7 @@ namespace TypistTech\Imposter\Plugin;
use Composer\Composer;
use Composer\EventDispatcher\EventSubscriberInterface;
use Composer\IO\IOInterface;
+use Comp... | Run `composer dump-autoload --optimize` after composer update and composer install | TypistTech_imposter-plugin | train | php |
cf23ef6d00881d6138fbc8f0815689227d2e24bf | diff --git a/db/migrate/30000000000001_add_request_key_to_tandem_contents.rb b/db/migrate/30000000000001_add_request_key_to_tandem_contents.rb
index <HASH>..<HASH> 100644
--- a/db/migrate/30000000000001_add_request_key_to_tandem_contents.rb
+++ b/db/migrate/30000000000001_add_request_key_to_tandem_contents.rb
@@ -3,8 +... | [Fixes #<I>] Check to see if page exists before updating the associated content. | 12spokes_tandem | train | rb |
68e9a110ea6af078a3cc8b9620bad94be07f6418 | diff --git a/src/customui/java/components/VirtualFlow.java b/src/customui/java/components/VirtualFlow.java
index <HASH>..<HASH> 100644
--- a/src/customui/java/components/VirtualFlow.java
+++ b/src/customui/java/components/VirtualFlow.java
@@ -2328,7 +2328,7 @@ public class VirtualFlow<T extends IndexedCell<?>> extends ... | fixed the scroll if the list is not expanded | jfoenixadmin_JFoenix | train | java |
a91ab338d2c8e4aaa49b319b10778415174a9aa8 | diff --git a/definitions/npm/isomorphic-fetch_v2.x.x/test_isomorphic-fetch_v2.js b/definitions/npm/isomorphic-fetch_v2.x.x/test_isomorphic-fetch_v2.js
index <HASH>..<HASH> 100644
--- a/definitions/npm/isomorphic-fetch_v2.x.x/test_isomorphic-fetch_v2.js
+++ b/definitions/npm/isomorphic-fetch_v2.x.x/test_isomorphic-fetch... | fix isomorphic-fetch for flow <I> | flow-typed_flow-typed | train | js |
11b05d5387c81d4bff18b86e070b8ca51394985b | diff --git a/code/libraries/koowa/libraries/dispatcher/http.php b/code/libraries/koowa/libraries/dispatcher/http.php
index <HASH>..<HASH> 100644
--- a/code/libraries/koowa/libraries/dispatcher/http.php
+++ b/code/libraries/koowa/libraries/dispatcher/http.php
@@ -111,7 +111,10 @@ class KDispatcherHttp extends KDispatche... | re #<I> : Pass the real view name to the controller. | joomlatools_joomlatools-framework | train | php |
5bcc89bb8e5185e0558d2ba85e80afbc57b5084b | diff --git a/salt/states/pip_state.py b/salt/states/pip_state.py
index <HASH>..<HASH> 100644
--- a/salt/states/pip_state.py
+++ b/salt/states/pip_state.py
@@ -104,7 +104,7 @@ def _check_pkg_version_format(pkg):
if not HAS_PIP:
ret['comment'] = (
'An importable pip module is required but could... | Pip state run result should be False, not None, if installation error occurs.
Fixes #<I> | saltstack_salt | train | py |
89b2fa4fcfc6784f153088c479139bbdabea6b43 | diff --git a/py/test/selenium/webdriver/common/frame_switching_tests.py b/py/test/selenium/webdriver/common/frame_switching_tests.py
index <HASH>..<HASH> 100644
--- a/py/test/selenium/webdriver/common/frame_switching_tests.py
+++ b/py/test/selenium/webdriver/common/frame_switching_tests.py
@@ -199,7 +199,7 @@ class Fra... | switch_to_parent_frame -> switch_to.parent_frame | SeleniumHQ_selenium | train | py |
d8530c7f766f19c26af9d9854b3e3ef0a582816a | diff --git a/src/components/ColorButton.js b/src/components/ColorButton.js
index <HASH>..<HASH> 100644
--- a/src/components/ColorButton.js
+++ b/src/components/ColorButton.js
@@ -64,7 +64,7 @@ class ColorButton extends DesktopComponent {
} else {
this.element[prop] = newProps[prop];
}
- ... | If statement allowed color to keep on being set. Fixes #<I> | kusti8_proton-native | train | js |
a38c7816084f62f2cec8b44e8fb507375b2dc240 | diff --git a/datajoint/__init__.py b/datajoint/__init__.py
index <HASH>..<HASH> 100644
--- a/datajoint/__init__.py
+++ b/datajoint/__init__.py
@@ -56,5 +56,5 @@ from .relation import Relation
from .user_relations import Manual, Lookup, Imported, Computed, Part
from .relational_operand import Not
from .heading import... | rename schema to Schema and add alias schema | datajoint_datajoint-python | train | py,py |
89b29fce742541edeb33bd18d26c1467b08e24bd | diff --git a/src/Pages/HailPage.php b/src/Pages/HailPage.php
index <HASH>..<HASH> 100755
--- a/src/Pages/HailPage.php
+++ b/src/Pages/HailPage.php
@@ -136,7 +136,11 @@ class HailPage extends \Page
}
$params = Controller::curr()->getRequest()->params();
- $this->current_article = Article::g... | FIX current article not dealing with article with null hailid | firebrandhq_silverstripe-hail | train | php |
7d883cb814415d6a567f5891b3aabd12b2a93fdc | diff --git a/lib/database.rb b/lib/database.rb
index <HASH>..<HASH> 100644
--- a/lib/database.rb
+++ b/lib/database.rb
@@ -6,7 +6,7 @@ module Database
def self.config
if File.exists?('config/redis_config.yml')
- YAML.load_file('config/redis_config.yml')[ENV['RACK_ENV'] || 'development'].symbolize_keys
+ ... | [FIX] Considering RACK_ENV, RAILS_ENV default is "development" | ondrejbartas_redis-model-extension | train | rb |
62803e7e13e27742c63672d4114ec319f31f315f | diff --git a/src/main/java/net/dv8tion/jda/internal/entities/GuildImpl.java b/src/main/java/net/dv8tion/jda/internal/entities/GuildImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/dv8tion/jda/internal/entities/GuildImpl.java
+++ b/src/main/java/net/dv8tion/jda/internal/entities/GuildImpl.java
@@ -1436,7 +1... | Enable unmuting suppressed users (#<I>) | DV8FromTheWorld_JDA | train | java |
65cf77ae3ef676a5d9e2ea640393ec8055e8b953 | diff --git a/js/src/tooltip.js b/js/src/tooltip.js
index <HASH>..<HASH> 100644
--- a/js/src/tooltip.js
+++ b/js/src/tooltip.js
@@ -449,6 +449,16 @@ class Tooltip extends BaseComponent {
options: {
element: `.${this.constructor.NAME}-arrow`
}
+ },
+ {
+ name: 'pr... | Popover/Tooltip: Fix vertical alignment on arrow of tip elements (#<I>)
Regression of #<I> | twbs_bootstrap | train | js |
6ca3dd32ab63de0cdb6f30bd86435957a6a3cf28 | diff --git a/generator/classes/propel/engine/builder/om/php5/PHP5ComplexObjectBuilder.php b/generator/classes/propel/engine/builder/om/php5/PHP5ComplexObjectBuilder.php
index <HASH>..<HASH> 100644
--- a/generator/classes/propel/engine/builder/om/php5/PHP5ComplexObjectBuilder.php
+++ b/generator/classes/propel/engine/bu... | Commenting out change to allow saving of empty objects, because BasePeer::doInsert() won't easily be modified to make this possible. | propelorm_Propel | train | php |
eff3b23149ab4935a7e7a5428a34eff0ece49210 | diff --git a/suds/__init__.py b/suds/__init__.py
index <HASH>..<HASH> 100644
--- a/suds/__init__.py
+++ b/suds/__init__.py
@@ -27,7 +27,7 @@ import sys
#
__version__ = '0.4.1'
-__build__="GA R699-20101015"
+__build__="(beta) R701-20101015"
#
# Exceptions | Fix release info to correct svn revision and (beta), not GA. | ovnicraft_suds2 | train | py |
f6d7d5f584d7cce906ee81eb8376de5c22fb5377 | diff --git a/tag/locallib.php b/tag/locallib.php
index <HASH>..<HASH> 100644
--- a/tag/locallib.php
+++ b/tag/locallib.php
@@ -31,8 +31,10 @@ function tag_print_cloud($nr_of_tags=150, $return=false) {
}
$tagkeys = array_keys($tagsincloud);
- $firsttagkey = $tagkeys[0];
- $maxcount = $tagsincloud[$firs... | MDL-<I> Do not try to access the first key of an empty array in case of no tag exists yet. Merged from <I> stable | moodle_moodle | train | php |
047af8dd3c304fbfe625be8b7c600005c69fa593 | diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_dispatch/routing/mapper.rb
+++ b/actionpack/lib/action_dispatch/routing/mapper.rb
@@ -1901,7 +1901,7 @@ module ActionDispatch
RESOURCE_SCOPE... | change to attr_reader | rails_rails | train | rb |
b3eac2a26fe295eeb59c5cb6fe6cdd9aac697ad2 | diff --git a/shinken/daemon.py b/shinken/daemon.py
index <HASH>..<HASH> 100644
--- a/shinken/daemon.py
+++ b/shinken/daemon.py
@@ -536,7 +536,7 @@ Also put default value in the properties if some are missing in the config_file
for line in self.get_header():
print line
- def handleRequests(se... | *Fix a bug in socket handling of daemons. External cmd pipe cannot be treated like a Pyro socket. | Alignak-monitoring_alignak | train | py |
e222253f605d7a35e3d3e9dfa74922ce1fdddb73 | diff --git a/src/Kunstmaan/GeneratorBundle/Resources/SensioGeneratorBundle/skeleton/layout/groundcontrol/bin/config/webpack.config.admin-extra.js b/src/Kunstmaan/GeneratorBundle/Resources/SensioGeneratorBundle/skeleton/layout/groundcontrol/bin/config/webpack.config.admin-extra.js
index <HASH>..<HASH> 100644
--- a/src/K... | [GeneratorBundle] Added missing import in admin js task (#<I>) | Kunstmaan_KunstmaanBundlesCMS | train | js |
af15030d35d2eae4be5fcb20ebf4c2ebb5423c04 | diff --git a/elpy/tests/test_ropebackend.py b/elpy/tests/test_ropebackend.py
index <HASH>..<HASH> 100644
--- a/elpy/tests/test_ropebackend.py
+++ b/elpy/tests/test_ropebackend.py
@@ -325,8 +325,12 @@ class TestGetDocstring(RopeBackendTestCase):
filename,
... | rope backend: Fix a test failing on <I>
Apparently, rope now can find more info on Thread.join, but only
in py <I>, not <I>. Ok? | jorgenschaefer_elpy | train | py |
c9cb01d4a2e289fdb86d8eccb45ac60b8822264c | diff --git a/graylog2-server/src/main/java/org/graylog2/caches/DiskJournalCache.java b/graylog2-server/src/main/java/org/graylog2/caches/DiskJournalCache.java
index <HASH>..<HASH> 100644
--- a/graylog2-server/src/main/java/org/graylog2/caches/DiskJournalCache.java
+++ b/graylog2-server/src/main/java/org/graylog2/caches... | Add private commit() method and improve logging. | Graylog2_graylog2-server | train | java |
c44165ed95fdc6f8d246101a2ca15566738da1f7 | diff --git a/tensorflow_datasets/core/registered_test.py b/tensorflow_datasets/core/registered_test.py
index <HASH>..<HASH> 100644
--- a/tensorflow_datasets/core/registered_test.py
+++ b/tensorflow_datasets/core/registered_test.py
@@ -101,10 +101,10 @@ class RegisteredTest(testing.TestCase):
self.assertEqual(bui... | Modify test to ensure that builder inputs with dashes are parsed correctly.
PiperOrigin-RevId: <I> | tensorflow_datasets | train | py |
97d03e5a572038b12555aa1880e63f51baa726f9 | diff --git a/src/sap.ui.core/src/sap/ui/core/LocaleData.js b/src/sap.ui.core/src/sap/ui/core/LocaleData.js
index <HASH>..<HASH> 100644
--- a/src/sap.ui.core/src/sap/ui/core/LocaleData.js
+++ b/src/sap.ui.core/src/sap/ui/core/LocaleData.js
@@ -2459,9 +2459,9 @@ sap.ui.define(['sap/base/util/extend', 'sap/ui/base/Object'... | [INTERNAL] format/NumberFormat: lenient symbol encoding
edge case with default number/minus symbols.
In some cases after executed <I> times ~2 time it fails.
In the failing test the minusSymbol string is returned
windows <I> encoded.
This change escapes the characters properly.
BCP: <I>
Change-Id: Ib0ac3a1a4ccc<I>eea... | SAP_openui5 | train | js |
501b4951c1572b42c761179f06dd18ea2274b2b7 | diff --git a/tests/test_parser.py b/tests/test_parser.py
index <HASH>..<HASH> 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -148,6 +148,9 @@ class WordTokenizeTestCase(unittest.TestCase):
retain_punctuation=True
)) == [('is', ), ('the', ), ('oven',), ('pre-heated', ), ('?',)]
+... | Add illustrative test case | MichaelAquilina_hashedindex | train | py |
267d78d4a429820c4b70a523ec9efe43ec1aeca0 | diff --git a/Tone/component/Envelope.js b/Tone/component/Envelope.js
index <HASH>..<HASH> 100644
--- a/Tone/component/Envelope.js
+++ b/Tone/component/Envelope.js
@@ -128,7 +128,7 @@ define(["Tone/core/Tone", "Tone/signal/TimelineSignal",
* <li>linear</li>
* <li>exponential</li>
* <li>sine</li>
- * <l... | ease renamed to cosine
[skip ci] | Tonejs_Tone.js | train | js |
eb6f45905bbf8e75f1c3bf7ac525b4ed8596bbbf | diff --git a/test/e2e/autoscaling/cluster_size_autoscaling.go b/test/e2e/autoscaling/cluster_size_autoscaling.go
index <HASH>..<HASH> 100644
--- a/test/e2e/autoscaling/cluster_size_autoscaling.go
+++ b/test/e2e/autoscaling/cluster_size_autoscaling.go
@@ -899,7 +899,7 @@ var _ = SIGDescribe("Cluster size autoscaling [Sl... | Fix computing number of nodes to break in unhealthy cluster test. | kubernetes_kubernetes | train | go |
ecc455ebb4d7e51ad37cf963f2f21c52d270b394 | diff --git a/builtin/providers/aws/resource_aws_codedeploy_deployment_group.go b/builtin/providers/aws/resource_aws_codedeploy_deployment_group.go
index <HASH>..<HASH> 100644
--- a/builtin/providers/aws/resource_aws_codedeploy_deployment_group.go
+++ b/builtin/providers/aws/resource_aws_codedeploy_deployment_group.go
@... | provider/aws: Guard against nil values in EC2 Tags | hashicorp_terraform | train | go |
ccc9b37b04a2d60f3fbd8bf5fcdd8b8a63d981dc | diff --git a/src/OpenAccess_EPUB/ops/opsplos.py b/src/OpenAccess_EPUB/ops/opsplos.py
index <HASH>..<HASH> 100644
--- a/src/OpenAccess_EPUB/ops/opsplos.py
+++ b/src/OpenAccess_EPUB/ops/opsplos.py
@@ -1156,6 +1156,10 @@ class OPSPLoS(OPSMeta):
#TODO: prefix-words, one possible solution would be to have this meth... | Provided the ability to elevate list elements when improperly placed below paragraphs, might be a theme... | SavinaRoja_OpenAccess_EPUB | train | py |
fd6c7386cfdaa5fb97a428b323fc1f9b17f9f02c | diff --git a/tests/test_helpers.py b/tests/test_helpers.py
index <HASH>..<HASH> 100644
--- a/tests/test_helpers.py
+++ b/tests/test_helpers.py
@@ -1,12 +1,21 @@
+import vcr
import pandas
+import pytest
+from sharepa.search import ShareSearch
from sharepa.helpers import pretty_print
from sharepa.helpers import sour... | Add pytest fail check on raising pretty print exeption | CenterForOpenScience_sharepa | train | py |
518de57d7c99bb4ae503b3897a3b76fc231ae0b5 | diff --git a/client/services/GitHubReposContents.php b/client/services/GitHubReposContents.php
index <HASH>..<HASH> 100644
--- a/client/services/GitHubReposContents.php
+++ b/client/services/GitHubReposContents.php
@@ -3,7 +3,6 @@
require_once(__DIR__ . '/../GitHubClient.php');
require_once(__DIR__ . '/../GitHubServi... | A require statement referenced a file that no longer exists. | tan-tan-kanarek_github-php-client | train | php |
76471a6db1ce009184968eabe36b9822646da017 | diff --git a/application/Espo/Core/Utils/Route.php b/application/Espo/Core/Utils/Route.php
index <HASH>..<HASH> 100644
--- a/application/Espo/Core/Utils/Route.php
+++ b/application/Espo/Core/Utils/Route.php
@@ -112,17 +112,27 @@ class Route
}
}
+ /**
+ * Unify routes
+ *
+ * @return array... | Route: possibility to replace routes in modules | espocrm_espocrm | train | php |
7127dee5732edc2385f01320d9f426773a66b2d3 | diff --git a/app/lib/dashboard/layout.rb b/app/lib/dashboard/layout.rb
index <HASH>..<HASH> 100644
--- a/app/lib/dashboard/layout.rb
+++ b/app/lib/dashboard/layout.rb
@@ -41,10 +41,13 @@ module Dashboard
def setup_layout
if (user_layout = current_user.try(:preferences).try(:[], :dashboard).try(:[], :layout)... | Bug #<I> - only show available dashboard widgets on dashboard. | Katello_katello | train | rb |
cbc6f51bf3ce723926dab731067854aa31e3bacc | diff --git a/jspdf.plugin.from_html.js b/jspdf.plugin.from_html.js
index <HASH>..<HASH> 100644
--- a/jspdf.plugin.from_html.js
+++ b/jspdf.plugin.from_html.js
@@ -483,7 +483,10 @@
};
}
}
- renderer.addText(value, fragmentCSS);
+ // Only add the text if the text node is in the body element
+... | [plugin.from_html] Title tag is rendered
Fixes #<I> | MrRio_jsPDF | train | js |
e8730243d8f9a28b6f9e01cef230d6ccf590b4b8 | diff --git a/lib/Elastica/AbstractUpdateAction.php b/lib/Elastica/AbstractUpdateAction.php
index <HASH>..<HASH> 100644
--- a/lib/Elastica/AbstractUpdateAction.php
+++ b/lib/Elastica/AbstractUpdateAction.php
@@ -167,7 +167,7 @@ class AbstractUpdateAction extends Param
* Sets the version_type of a document
* ... | Fix incorred AbstractUpdateAction::setVersionType annotation (#<I>)
This function should take a string, specifically 'external', so
annotate as taking a string rather than an integer. | ruflin_Elastica | train | php |
02ee3e41d4d7955cfb12b6e2deec3008c59e4bfb | diff --git a/openstack_dashboard/dashboards/project/images/images/tables.py b/openstack_dashboard/dashboards/project/images/images/tables.py
index <HASH>..<HASH> 100644
--- a/openstack_dashboard/dashboards/project/images/images/tables.py
+++ b/openstack_dashboard/dashboards/project/images/images/tables.py
@@ -282,6 +28... | Adds deactivated status for glance image
This patch adds the status deactivated for
images that have been deactivated in glance
thus also fixes the issue with progress bar
after image is deactivated.
Change-Id: I<I>c9fecb3cf<I>e1a2a<I>a<I>e<I>a<I>a<I>a<I>
Closes-bug: #<I> | openstack_horizon | train | py |
17e8cd8edea54ce18f79ca570b576daf9dec5b1e | diff --git a/client/src/main/java/io/pravega/client/stream/EventWriterConfig.java b/client/src/main/java/io/pravega/client/stream/EventWriterConfig.java
index <HASH>..<HASH> 100644
--- a/client/src/main/java/io/pravega/client/stream/EventWriterConfig.java
+++ b/client/src/main/java/io/pravega/client/stream/EventWriterC... | Issue <I>: Turn off connection pooling by default. (#<I>)
Change default status of connection pooling on append to off. | pravega_pravega | train | java |
9f1043574def646bd566019c4949a37d4fbea262 | diff --git a/spyder/widgets/collectionseditor.py b/spyder/widgets/collectionseditor.py
index <HASH>..<HASH> 100644
--- a/spyder/widgets/collectionseditor.py
+++ b/spyder/widgets/collectionseditor.py
@@ -1015,9 +1015,8 @@ class BaseTableView(QTableView, SpyderConfigurationAccessor):
try:
i... | Variable Explorer: Don't set Qt4Agg as Matplotlib backend for plots | spyder-ide_spyder | train | py |
45230c1b714e1ef9b647c3ae81bdd0792c44ab19 | diff --git a/chimp_campaigns.go b/chimp_campaigns.go
index <HASH>..<HASH> 100644
--- a/chimp_campaigns.go
+++ b/chimp_campaigns.go
@@ -21,10 +21,10 @@ const (
campaign_send_endpoint string = "/campaigns/send.json"
)
-func (a *ChimpAPI) getContent(apiKey string, cid string, options map[string]interface{}, content... | remove apikey, get it from chimpapi struct. thanks @kevinburke | mattbaird_gochimp | train | go |
24620f436934e430a66317d7620af715d1eacb5d | diff --git a/process/context/command_test.go b/process/context/command_test.go
index <HASH>..<HASH> 100644
--- a/process/context/command_test.go
+++ b/process/context/command_test.go
@@ -10,8 +10,10 @@ import (
jc "github.com/juju/testing/checkers"
gc "gopkg.in/check.v1"
+ "github.com/juju/juju/process/context"
... | Set the component to a test double in checkRun. | juju_juju | train | go |
c453519ceab84e7f87a3e00f82ede570ef35260d | diff --git a/hazelcast/src/main/java/com/hazelcast/instance/DefaultAddressPicker.java b/hazelcast/src/main/java/com/hazelcast/instance/DefaultAddressPicker.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/instance/DefaultAddressPicker.java
+++ b/hazelcast/src/main/java/com/hazelcast/instance... | Fix the last-port number in the exception message which informs users about a failed bind (with autoincrement enabled) | hazelcast_hazelcast | train | java |
4fc297abe0cfe20047396b5c2e68546bf64d038a | diff --git a/tests/Recipient/ProcessedGroupTest.php b/tests/Recipient/ProcessedGroupTest.php
index <HASH>..<HASH> 100644
--- a/tests/Recipient/ProcessedGroupTest.php
+++ b/tests/Recipient/ProcessedGroupTest.php
@@ -94,7 +94,6 @@ class ProcessedGroupTest extends AbstractEnviromentProvider
$this->assertEquals($p... | Resolved phpunit error 2 caused by last commit | iP1SMS_ip1-php-sdk | train | php |
6e14a63291ee89153acde5eb43a179a34ea58b2a | diff --git a/bigchaindb/backend/rethinkdb/schema.py b/bigchaindb/backend/rethinkdb/schema.py
index <HASH>..<HASH> 100644
--- a/bigchaindb/backend/rethinkdb/schema.py
+++ b/bigchaindb/backend/rethinkdb/schema.py
@@ -33,6 +33,8 @@ def create_tables(connection, name):
@schema_dispatch(RethinkDBConnection)
def create_ind... | Add backlog and votes secondary indexes to rethinkdb's create_index() | bigchaindb_bigchaindb | train | py |
e7b38c74ef827750c61ada5a3d32a52ef254e2cf | diff --git a/deep.js b/deep.js
index <HASH>..<HASH> 100644
--- a/deep.js
+++ b/deep.js
@@ -795,7 +795,8 @@ define(["require", "./utils", "./deep-rql", "./deep-schema", "./deep-query", "./
self._queried = false;
else
self._queried = true;
- return... | force chain success as undefined when query return nothing | deepjs_deepjs | train | js |
7af1222e64c4fb444c21ea5194d188bf59a3edd1 | diff --git a/rest_registration/__init__.py b/rest_registration/__init__.py
index <HASH>..<HASH> 100644
--- a/rest_registration/__init__.py
+++ b/rest_registration/__init__.py
@@ -1,2 +1,2 @@
-__version__ = "0.3.9"
+__version__ = "0.3.10"
default_app_config = 'rest_registration.apps.RestRegistrationConfig' | Bumped version to <I>
[skip ci] | apragacz_django-rest-registration | train | py |
ea0d80988578ee94f4c0d9563f4bbae7d3ea2e26 | diff --git a/lib/global_id/global_id.rb b/lib/global_id/global_id.rb
index <HASH>..<HASH> 100644
--- a/lib/global_id/global_id.rb
+++ b/lib/global_id/global_id.rb
@@ -13,9 +13,7 @@ class GlobalID
end
def find(gid, options = {})
- if global_id = parse(gid)
- global_id.find if find_allowed_for?(gl... | Moving find(:only) checks into GlobalID instance | rails_globalid | train | rb |
2cdffdee79b7cd439328ecffef833fb56514b74d | diff --git a/sources/scalac/ast/TreeGen.java b/sources/scalac/ast/TreeGen.java
index <HASH>..<HASH> 100644
--- a/sources/scalac/ast/TreeGen.java
+++ b/sources/scalac/ast/TreeGen.java
@@ -317,7 +317,12 @@ public class TreeGen implements Kinds, Modifiers, TypeTags {
sym.flags |= ACCESSED;
Ident tree = make.Ident(pos,... | - Fixed Ident for initializer methods | scala_scala | train | java |
d63339082aa02debe7b473cab345a83030284480 | diff --git a/lib/moodlelib.php b/lib/moodlelib.php
index <HASH>..<HASH> 100644
--- a/lib/moodlelib.php
+++ b/lib/moodlelib.php
@@ -4110,7 +4110,7 @@ function email_to_user($user, $from, $subject, $messagetext, $messagehtml='', $a
$mail->From = $CFG->noreplyaddress;
$mail->FromName = $from;
} ... | MDL-<I> no striplashes in HEAD anymore | moodle_moodle | train | php |
cc3bf3d4eea4367b480b49582693567ff33214d1 | diff --git a/livebridge/controldata/dynamo.py b/livebridge/controldata/dynamo.py
index <HASH>..<HASH> 100644
--- a/livebridge/controldata/dynamo.py
+++ b/livebridge/controldata/dynamo.py
@@ -51,6 +51,6 @@ class DynamoControl(BaseControl):
async def load(self, path):
control_data = await self._load_contr... | Fixed call for checksum for dynamo control data. | dpa-newslab_livebridge | train | py |
48218b0900460a15edc948059544d6041b7df79d | diff --git a/src/analytics.js b/src/analytics.js
index <HASH>..<HASH> 100644
--- a/src/analytics.js
+++ b/src/analytics.js
@@ -494,14 +494,17 @@ extend(Analytics.prototype, {
*
* @param {String} url (optional) - The path of the page (eg. '/login'). Most
* providers will default to the current pages URL, so ... | #<I> context support for pageview api | segmentio_analytics.js-core | train | js |
e258f6d3cfe5f53009843ee955e5fb28f005e34e | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -262,10 +262,10 @@ const getCookies = async (uri, format, callback, profile) => {
} else if (process.platform === 'win32') {
- path = os.homedir() + `\\AppData\\Local\\Google\\Chrome\\User Data\\${profile}\\Cookies`;
+... | Update index.js
Check for new location first. Old files is still present but empty | bertrandom_chrome-cookies-secure | train | js |
5e5be34753a9a3ef37d9bca87581c81618361b93 | diff --git a/sites/site-utilities/statics/server/server.js b/sites/site-utilities/statics/server/server.js
index <HASH>..<HASH> 100644
--- a/sites/site-utilities/statics/server/server.js
+++ b/sites/site-utilities/statics/server/server.js
@@ -7,13 +7,23 @@ var path = require("path");
var app = express();
// Securit... | update to helmet configuration to omit csp (#<I>) | Microsoft_fast-dna | train | js |
18f5a33c0d27c0d81ab92489a39076ee2a677525 | diff --git a/packages/react-native-web/src/exports/AccessibilityInfo/index.js b/packages/react-native-web/src/exports/AccessibilityInfo/index.js
index <HASH>..<HASH> 100644
--- a/packages/react-native-web/src/exports/AccessibilityInfo/index.js
+++ b/packages/react-native-web/src/exports/AccessibilityInfo/index.js
@@ -1... | [fix] Don't require mocking window.matchMedia in jest
For people who don't mock unsupported DOM APIs for jsdom in their jest setup.
Fix #<I> | necolas_react-native-web | train | js |
7b67a751efe3bb9796ee64872421efffe88d31de | diff --git a/activesupport/lib/active_support/notifications.rb b/activesupport/lib/active_support/notifications.rb
index <HASH>..<HASH> 100644
--- a/activesupport/lib/active_support/notifications.rb
+++ b/activesupport/lib/active_support/notifications.rb
@@ -171,6 +171,24 @@ module ActiveSupport
end
end... | Add docs to ActiveSupport::Notifications.subscribe
[ci skip] | rails_rails | train | rb |
dc4d46dfa0376e4abf44d519ef5f3d0670a14390 | diff --git a/wireless/Wireless.py b/wireless/Wireless.py
index <HASH>..<HASH> 100644
--- a/wireless/Wireless.py
+++ b/wireless/Wireless.py
@@ -361,12 +361,12 @@ class WpasupplicantWireless(WirelessDriver):
response = cmd('iwconfig {}'.format(
self.interface()))
- # the current network is ... | Update iwconfig current() to handle Nickname field | joshvillbrandt_wireless | train | py |
c24e070654ab41fde1da8f585cd8df0e71ebcabf | diff --git a/lib/dare/image.rb b/lib/dare/image.rb
index <HASH>..<HASH> 100644
--- a/lib/dare/image.rb
+++ b/lib/dare/image.rb
@@ -17,8 +17,15 @@ module Dare
# x and y represent the top-left corner of the image
# image.draw(100, 200)
#
- def draw(x = 0, y = 0, canvas = @canvas)
- `#{canvas.contex... | change optional canvas in drawing image to options hash style | domgetter_dare | train | rb |
faf7f72cb139d66c4698fe6671962d59c5bb3a48 | diff --git a/documentation-website/src/client/Guides/SyncAsync.js b/documentation-website/src/client/Guides/SyncAsync.js
index <HASH>..<HASH> 100644
--- a/documentation-website/src/client/Guides/SyncAsync.js
+++ b/documentation-website/src/client/Guides/SyncAsync.js
@@ -53,7 +53,7 @@ const routes = [
</PrismBlock>... | (docs) Typo: "routes and matched" -> "routes are matched" (#<I>) | pshrmn_curi | train | js |
c7296c62514ff151e49001e88a00cb6dd809a6c2 | diff --git a/lib/active_scaffold/actions/update.rb b/lib/active_scaffold/actions/update.rb
index <HASH>..<HASH> 100644
--- a/lib/active_scaffold/actions/update.rb
+++ b/lib/active_scaffold/actions/update.rb
@@ -143,6 +143,7 @@ module ActiveScaffold::Actions
return unless @record.authorized_for?(:crud_type => :up... | create singular association when update delegated association and association is nil | activescaffold_active_scaffold | train | rb |
e31c5ca1a88a32e425f9e28abbdfd66d4309c5c6 | diff --git a/src/structures/Role.js b/src/structures/Role.js
index <HASH>..<HASH> 100644
--- a/src/structures/Role.js
+++ b/src/structures/Role.js
@@ -20,6 +20,18 @@ class Role extends Base {
*/
this.guild = guild;
+ /**
+ * The icon hash of the role
+ * @type {?string}
+ */
+ this.icon =... | fix(Role): check for presence of icon and unicode_emoji before patching (#<I>) | discordjs_discord.js | train | js |
8d3e699004c49a6e5f140b66c46ccc747b36020f | diff --git a/examples/example3/__main__.py b/examples/example3/__main__.py
index <HASH>..<HASH> 100644
--- a/examples/example3/__main__.py
+++ b/examples/example3/__main__.py
@@ -3,7 +3,6 @@
# Example3 - routerclass
#
-import asyncio
from growler import App
from growler.router import routerclass
@@ -27,12 +26,1... | Remembered that I can call get_body() on a request to avoid a "yield from" statement in example3 | pyGrowler_Growler | train | py |
1b8a54153fc4dab665221aaa38e09ba23ae3cfa9 | diff --git a/reactor-core/src/main/java/reactor/core/publisher/FluxGroupBy.java b/reactor-core/src/main/java/reactor/core/publisher/FluxGroupBy.java
index <HASH>..<HASH> 100644
--- a/reactor-core/src/main/java/reactor/core/publisher/FluxGroupBy.java
+++ b/reactor-core/src/main/java/reactor/core/publisher/FluxGroupBy.ja... | cleanup: use passed queue in FluxGroupBy.checkTerminated (port #<I>)
Internal cleanup, the queue is captured locally as `q` and passed as a
parameter. Said parameter should always be used in the utility method,
rather than a direct access to the field.
This is a backport of #<I> (commit e<I>cf5), as tracked in #<I> | reactor_reactor-core | train | java |
2b22e411c124f8441894e5b9d7486ef036a46525 | diff --git a/js/core/DomElement.js b/js/core/DomElement.js
index <HASH>..<HASH> 100644
--- a/js/core/DomElement.js
+++ b/js/core/DomElement.js
@@ -6,7 +6,7 @@ define(["require", "js/core/EventDispatcher", "js/core/Component", "js/core/Cont
var ContentPlaceHolder;
var pointerToTouchMap = {
- ... | on:pointer is now mapped to on:click on touch devices | rappid_rAppid.js | train | js |
c179db6514806f7ed24e7ec8e5c636470b3d9e58 | diff --git a/core/src/main/java/hudson/model/FingerprintMap.java b/core/src/main/java/hudson/model/FingerprintMap.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/model/FingerprintMap.java
+++ b/core/src/main/java/hudson/model/FingerprintMap.java
@@ -34,11 +34,11 @@ public final class FingerprintMap {
... | made the contract bit more generic so that it can be used from MavenBuild.
git-svn-id: <URL> | jenkinsci_jenkins | train | java |
3006d9fb781e47d5b5bbc859a36be9b9b4255853 | diff --git a/src/sdk/GameyeClient.php b/src/sdk/GameyeClient.php
index <HASH>..<HASH> 100644
--- a/src/sdk/GameyeClient.php
+++ b/src/sdk/GameyeClient.php
@@ -156,7 +156,7 @@ class GameyeClient
$args
) {
$query = http_build_query($args);
- if (len($query) > 0) {
+ if (strlen($query)... | fix typo (#<I>) | Gameye_gameye-sdk-php | train | php |
83846d86604f26cd811cc19d8a505bf1fdde1881 | diff --git a/modules/uadetector-core/src/main/java/net/sf/uadetector/internal/data/domain/Device.java b/modules/uadetector-core/src/main/java/net/sf/uadetector/internal/data/domain/Device.java
index <HASH>..<HASH> 100644
--- a/modules/uadetector-core/src/main/java/net/sf/uadetector/internal/data/domain/Device.java
+++ ... | Removed transient flag from field 'category' because we do not set it
during deserialization | before_uadetector | train | java |
177f401e7e0b9bc2020384a22332f209e5922ece | diff --git a/grablib/version.py b/grablib/version.py
index <HASH>..<HASH> 100644
--- a/grablib/version.py
+++ b/grablib/version.py
@@ -1,3 +1,3 @@
from distutils.version import StrictVersion
-VERSION = StrictVersion('0.1.4')
+VERSION = StrictVersion('0.1.5') | uprev to <I> | samuelcolvin_grablib | train | py |
c07f6510da6b7de6e895337af94974c127a16316 | diff --git a/src/toil/test/src/resumabilityTest.py b/src/toil/test/src/resumabilityTest.py
index <HASH>..<HASH> 100644
--- a/src/toil/test/src/resumabilityTest.py
+++ b/src/toil/test/src/resumabilityTest.py
@@ -35,6 +35,7 @@ class ResumabilityTest(ToilTest):
"""
options = Job.Runner.getDefaultOptions(... | change fixed a test that is supposed to break | DataBiosphere_toil | train | py |
8fd099ab4195f85f06d5d20b23c23582b4a9aa06 | diff --git a/generator/src/org/immutables/generator/Output.java b/generator/src/org/immutables/generator/Output.java
index <HASH>..<HASH> 100644
--- a/generator/src/org/immutables/generator/Output.java
+++ b/generator/src/org/immutables/generator/Output.java
@@ -258,6 +258,7 @@ public final class Output {
@Suppres... | tried new postprocessing, no luck yet | immutables_immutables | train | java |
03b6771f07445d5757ed560270ef83a9312f10aa | diff --git a/canvasapi/canvas.py b/canvasapi/canvas.py
index <HASH>..<HASH> 100644
--- a/canvasapi/canvas.py
+++ b/canvasapi/canvas.py
@@ -62,7 +62,7 @@ class Canvas(object):
# Ensure that the user-supplied access token and base_url contain no leading or
# trailing spaces that might cause issues when ... | Fix an issue where base_url was being set incorrectly. Added regression test (#<I>) | ucfopen_canvasapi | train | py,py |
1c75104b1dfc53c26e4ebc785953f75ac4de5499 | diff --git a/test/unit/test_dispatcher.py b/test/unit/test_dispatcher.py
index <HASH>..<HASH> 100644
--- a/test/unit/test_dispatcher.py
+++ b/test/unit/test_dispatcher.py
@@ -1,6 +1,7 @@
"""test_dispatcher.py"""
#pylint:disable=missing-docstring,line-too-long,too-many-public-methods,no-init,unused-argument
+import ... | Disable logging in dispatcher test
Log messages mess up the test output. | bcb_jsonrpcserver | train | py |
8dd29c2d6e36725f851284c45b089f46b0015792 | diff --git a/pysimplevcs/git_util.py b/pysimplevcs/git_util.py
index <HASH>..<HASH> 100644
--- a/pysimplevcs/git_util.py
+++ b/pysimplevcs/git_util.py
@@ -22,5 +22,9 @@ def git_init(*args, **kwargs):
def git_clone(*args, **kwargs):
output = _run_subcommand("clone", *args, **kwargs)
- if len(output) != 0:
- ... | Fixes #2: Handle non-empty output from "git clone" command | rcook_pysimplevcs | train | py |
8dd587c6dbedac08068434d21c07b2d6aefe5a0c | diff --git a/closure/goog/structs/heap.js b/closure/goog/structs/heap.js
index <HASH>..<HASH> 100644
--- a/closure/goog/structs/heap.js
+++ b/closure/goog/structs/heap.js
@@ -144,7 +144,7 @@ goog.structs.Heap.prototype.peek = function() {
/**
* Retrieves but does not remove the key of the root node of this heap.
-... | Fix the return type of peekKey method
-------------
Created by MOE: <URL> | google_closure-library | train | js |
c21b8a5e404b0c954e9085d52cdd77a3931393e9 | diff --git a/packages/simplebar/webpack.config.js b/packages/simplebar/webpack.config.js
index <HASH>..<HASH> 100644
--- a/packages/simplebar/webpack.config.js
+++ b/packages/simplebar/webpack.config.js
@@ -11,6 +11,8 @@ module.exports = {
contentBase: './demo',
port: 8090,
inline: true
+ // host: "0.... | chore: add config for remote debugging | Grsmto_simplebar | train | js |
0c332ddfbe65c5a76ea92d5b15b0bac9006a7521 | diff --git a/widgets/GridView.php b/widgets/GridView.php
index <HASH>..<HASH> 100644
--- a/widgets/GridView.php
+++ b/widgets/GridView.php
@@ -28,6 +28,7 @@ class GridView extends \kartik\grid\GridView
public $formModel = null;
public $uniqueId = null;
public $hover = true;
+ public $responsiveWrap = ... | Removed respositive mode in gridview widget | execut_yii2-actions | train | php |
549a3618486a38a4af338a73e30888273e75b5af | diff --git a/test-complete/nodejs-dmsdk-writeall.js b/test-complete/nodejs-dmsdk-writeall.js
index <HASH>..<HASH> 100644
--- a/test-complete/nodejs-dmsdk-writeall.js
+++ b/test-complete/nodejs-dmsdk-writeall.js
@@ -33,9 +33,9 @@ const {expect} = require("chai");
var transformuris = [];
var batchuris = [];
-var db =... | Test on separate DB and App Server | marklogic_node-client-api | train | js |
52a96d38c838a8f32d0475f0437fddf7e3451fc1 | diff --git a/component-4-comp-5-states.js b/component-4-comp-5-states.js
index <HASH>..<HASH> 100644
--- a/component-4-comp-5-states.js
+++ b/component-4-comp-5-states.js
@@ -36,7 +36,7 @@ $cs.transition = function () {
};
/* initialize state transition set with a reasonable default */
-$cs.transition("created", ... | use a lighter grey for the created state | rse_componentjs | train | js |
f5952919f9a3c094fd4885a81ef557287434d72d | diff --git a/lib/airbrake/rails3_tasks.rb b/lib/airbrake/rails3_tasks.rb
index <HASH>..<HASH> 100644
--- a/lib/airbrake/rails3_tasks.rb
+++ b/lib/airbrake/rails3_tasks.rb
@@ -80,7 +80,10 @@ namespace :airbrake do
end
puts 'Processing request.'
- env = Rack::MockRequest.env_for("/verify")
+
+ protocol ... | Use https for rake airbrake:test if force_ssl set to true (fixes #<I>) | airbrake_airbrake | train | rb |
e7540a7f4f9a16b7e4c70fee2dea496c5bfa7a5a | diff --git a/tests/Metadata/Driver/AbstractDriverTest.php b/tests/Metadata/Driver/AbstractDriverTest.php
index <HASH>..<HASH> 100644
--- a/tests/Metadata/Driver/AbstractDriverTest.php
+++ b/tests/Metadata/Driver/AbstractDriverTest.php
@@ -46,6 +46,8 @@ abstract class AbstractDriverTest extends TestCase
$this->... | Added assertions for accessor reflections | tsantos84_serializer | train | php |
2481b041cedf826068ea372c81165dd731c8bc36 | diff --git a/admin/tool/task/schedule_task.php b/admin/tool/task/schedule_task.php
index <HASH>..<HASH> 100644
--- a/admin/tool/task/schedule_task.php
+++ b/admin/tool/task/schedule_task.php
@@ -83,6 +83,8 @@ if (!optional_param('confirm', 0, PARAM_INT)) {
// Action requires session key.
require_sesskey();
+\core\s... | MDL-<I> tool_task: Unlock session on long running tasks in UI | moodle_moodle | train | php |
60fea386bdf76019ae24eb4ca3903803f4692484 | diff --git a/Response.php b/Response.php
index <HASH>..<HASH> 100644
--- a/Response.php
+++ b/Response.php
@@ -86,7 +86,6 @@ class Response
"Class is destructing. Set response code ({$this->_status}), output the body, and flush buffers."
);
$this->_log("debug", "Body output", ["output" =>... | bring response code set and body echo together | SlaxWeb_Router | train | php |
c48c9e2196dd6a1bb98cb0590dec13ef64d061f2 | diff --git a/lib/hipchat/version.rb b/lib/hipchat/version.rb
index <HASH>..<HASH> 100644
--- a/lib/hipchat/version.rb
+++ b/lib/hipchat/version.rb
@@ -1,3 +1,3 @@
module HipChat
- VERSION = '1.5.0'
+ VERSION = '1.5.1'
end | patch release to fix missing @api_version | hipchat_hipchat-rb | train | rb |
a9d67213be96ab58042b8a3fe18ed755ec76a160 | diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/embedded/EmbeddedMongoAutoConfiguration.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/embedded/EmbeddedMongoAutoConfiguration.java
index <HASH>..<HASH> 100644
--- a/spring-boot... | Override Eclipse’s formatting to keep Checkstyle happy
See gh-<I> | spring-projects_spring-boot | train | java |
eb80eb81c569eea89c7155b3cf15350e7d70e720 | diff --git a/classes/ValidFormBuilder/Button.php b/classes/ValidFormBuilder/Button.php
index <HASH>..<HASH> 100644
--- a/classes/ValidFormBuilder/Button.php
+++ b/classes/ValidFormBuilder/Button.php
@@ -48,16 +48,19 @@ class Button extends Base
/**
* Button ID
+ * @internal
* @var string
*/... | Added @internal notation | validformbuilder_validformbuilder | train | php |
2e57ca1948ba6b032c6b5d9794ff502c2ff8d8d8 | diff --git a/dwave/cloud/cli.py b/dwave/cloud/cli.py
index <HASH>..<HASH> 100644
--- a/dwave/cloud/cli.py
+++ b/dwave/cloud/cli.py
@@ -325,12 +325,15 @@ def solvers(config_file, profile, solver_def, list_solvers):
for solver in solvers:
click.echo("Solver: {}".format(solver.id))
click... | Print derived properties in 'dwave solvers' | dwavesystems_dwave-cloud-client | train | py |
1f7383a1d758f4e089978a4fd36739c736ac804a | diff --git a/xchange-core/src/main/java/org/knowm/xchange/dto/account/Balance.java b/xchange-core/src/main/java/org/knowm/xchange/dto/account/Balance.java
index <HASH>..<HASH> 100644
--- a/xchange-core/src/main/java/org/knowm/xchange/dto/account/Balance.java
+++ b/xchange-core/src/main/java/org/knowm/xchange/dto/accoun... | [Core] Bug fix in Balance.Builder | knowm_XChange | train | java |
39b417d7ed8abf02586d24e7b4672a360240a91a | diff --git a/classes/ezjscserverfunctionsjs.php b/classes/ezjscserverfunctionsjs.php
index <HASH>..<HASH> 100644
--- a/classes/ezjscserverfunctionsjs.php
+++ b/classes/ezjscserverfunctionsjs.php
@@ -194,7 +194,7 @@ YUI( YUI3_config ).add('io-ez', function( Y )
_ez.url = _serverUrl;
_ez.seperator = _seperator;... | - Sync with yui <I> GA ( Y.io depends on event-custom, but not the whole event plugin )
git-svn-id: <URL> | ezsystems_ezpublish-legacy | train | php |
81329cddd36130025a833e0441ca8c50c98cfb68 | diff --git a/database/migrations/2013_07_25_145958_create_translations_table.php b/database/migrations/2013_07_25_145958_create_translations_table.php
index <HASH>..<HASH> 100644
--- a/database/migrations/2013_07_25_145958_create_translations_table.php
+++ b/database/migrations/2013_07_25_145958_create_translations_tab... | Fixed issue with migrations.
Fk in translations table was for wrong languages table. | Waavi_translation | train | php |
11f32dc982352930f990bc28bca466564ff49537 | diff --git a/src/Parser.php b/src/Parser.php
index <HASH>..<HASH> 100644
--- a/src/Parser.php
+++ b/src/Parser.php
@@ -38,7 +38,7 @@ class Parser
throw new Exception('Error reading from file: '.$filename);
}
- return static::fromDocument($xml, $checkXml, $normalizeXml, $tableFilter);
+ ... | Fix calling Parser::fromDocument from Parser::fromFile | concrete5_doctrine-xml | train | php |
68346f22661a3b26e6ff39372db03fb97dd9f225 | diff --git a/js/binance.js b/js/binance.js
index <HASH>..<HASH> 100644
--- a/js/binance.js
+++ b/js/binance.js
@@ -805,6 +805,10 @@ module.exports = class binance extends Exchange {
const options = this.safeValue (this.options, 'future', {});
const fetchBalanceOptions = this.safeValue (options... | Fetch balances for Binance dapi | ccxt_ccxt | train | js |
537650bfcd650c038690d6eda5629c71be328d52 | diff --git a/core-bundle/src/Resources/contao/classes/BackendUser.php b/core-bundle/src/Resources/contao/classes/BackendUser.php
index <HASH>..<HASH> 100644
--- a/core-bundle/src/Resources/contao/classes/BackendUser.php
+++ b/core-bundle/src/Resources/contao/classes/BackendUser.php
@@ -305,7 +305,7 @@ class BackendUser... | [Core] Correctly inherit empty page permissions (see #<I>). | contao_contao | train | php |
308c4012e80b0be2364379d48ebfc5ee7375b274 | diff --git a/tools/vis.py b/tools/vis.py
index <HASH>..<HASH> 100755
--- a/tools/vis.py
+++ b/tools/vis.py
@@ -47,7 +47,7 @@ ORDER BY ma_instances.startTime DESC
LIMIT %u
"""
LATENCY = """
-SELECT AVG(cs.clusterRoundtripAvg) AS latency
+SELECT MIN(cs.clusterRoundtripAvg) AS latency
FROM ma_clientInstances ci, m... | Use the average-latency number from the best run.
Badly misconfigured runs no longer affect the graph. | VoltDB_voltdb | train | py |
9d8a320ce1edd90781fcf53fe36ca22878041376 | diff --git a/lib/wsoc/specs.rb b/lib/wsoc/specs.rb
index <HASH>..<HASH> 100644
--- a/lib/wsoc/specs.rb
+++ b/lib/wsoc/specs.rb
@@ -18,20 +18,16 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
-require 'uri'
-
module WSOC
module Specs
def self.included(base)
base.mod... | No longer use URI.encode to encode links, this way we preserve any odd characters. | postmodern_wsoc | train | rb |
744650ef3e360b027ff8f7343f8c746eeed48ece | diff --git a/errors.go b/errors.go
index <HASH>..<HASH> 100644
--- a/errors.go
+++ b/errors.go
@@ -1,5 +1,6 @@
package tags
+// Errors is the type we expect to contain the errors in the model we're representing with forms.
type Errors interface {
Get(key string) []string
}
diff --git a/form/text_area_tag_test.go... | Adding comment on the Errors type | gobuffalo_tags | train | go,go |
4b3c9c696dec33435c2ff41ccb79b33d20040506 | diff --git a/src/zoomable-circles-list.js b/src/zoomable-circles-list.js
index <HASH>..<HASH> 100644
--- a/src/zoomable-circles-list.js
+++ b/src/zoomable-circles-list.js
@@ -18,8 +18,10 @@ jQuery(document).ready(function($) {
' data="' + dataList[i] + '">' +
' </div>' +
... | using the data file name as the default title and description. | leocornus_leocornus-visualdata | train | js |
0c2cd5c2cc0e778c07b6d5ba1230ddbf8bfc4aed | diff --git a/src/main/resources/META-INF/resources/primefaces/core/core.js b/src/main/resources/META-INF/resources/primefaces/core/core.js
index <HASH>..<HASH> 100644
--- a/src/main/resources/META-INF/resources/primefaces/core/core.js
+++ b/src/main/resources/META-INF/resources/primefaces/core/core.js
@@ -1,7 +1,7 @@
... | fixed problem with minified version, it minified to:
function(a){if(a.PrimeFaces){b.debug("PrimeFaces already loaded, ignoring duplicate execution.");return}
which caused "Cannot read property 'debug' of undefined" JS error when loaded two times on a page - common case in portal environment where portlets use pri... | primefaces_primefaces | train | js |
a1c84533422fb2faf4d7d6a9a1efa992ba32a0f6 | diff --git a/lib/capybara/cucumber.rb b/lib/capybara/cucumber.rb
index <HASH>..<HASH> 100644
--- a/lib/capybara/cucumber.rb
+++ b/lib/capybara/cucumber.rb
@@ -6,8 +6,11 @@ require 'capybara/rspec/matchers'
World(Capybara::DSL)
World(Capybara::RSpecMatchers)
-Before do
+After do
Capybara.reset_sessions!
+end
+
+B... | Clean up sessions after under cucumber, to be consistent with rspec | teamcapybara_capybara | train | rb |
8d26d5a9b3b5801f6d4db7ada37d96c346b985ac | diff --git a/lib/addMethod/index.js b/lib/addMethod/index.js
index <HASH>..<HASH> 100644
--- a/lib/addMethod/index.js
+++ b/lib/addMethod/index.js
@@ -189,7 +189,7 @@ module.exports = function (methodName, config) {
logger.info(methodName+': running `afterSuccess` hook');
globalize.afterSuccess.call(t... | don't log the entire response object on failure | trayio_threadneedle | train | js |
fc6bf9841bde7c9be546470c3d0e70b4811906a2 | diff --git a/lib/Form/Field/ValueList.php b/lib/Form/Field/ValueList.php
index <HASH>..<HASH> 100644
--- a/lib/Form/Field/ValueList.php
+++ b/lib/Form/Field/ValueList.php
@@ -38,7 +38,7 @@ class Form_Field_ValueList extends Form_Field {
return $this->value_list=$res;
}
- if($this->empty_text && isset($t... | Update lib/Form/Field/ValueList.php
Bug as reported in <URL> | atk4_atk4 | train | php |
e596e23dc8849c1aa54fd926f5905452fb86479e | diff --git a/backtrader/indicators/rsi.py b/backtrader/indicators/rsi.py
index <HASH>..<HASH> 100644
--- a/backtrader/indicators/rsi.py
+++ b/backtrader/indicators/rsi.py
@@ -142,11 +142,11 @@ class RelativeStrengthIndex(Indicator):
rs = maup / madown will be checked for the special cases in which a
`... | Improve doc for RSI for rsi safedivision. Closes #<I> | backtrader_backtrader | train | py |
b709fa3e0a8b84db31bc815a07930136feb65536 | diff --git a/lib/benchmark/bigo.rb b/lib/benchmark/bigo.rb
index <HASH>..<HASH> 100644
--- a/lib/benchmark/bigo.rb
+++ b/lib/benchmark/bigo.rb
@@ -35,6 +35,10 @@ module Benchmark
job.run
+ if job.data?
+ job.generate_data
+ end
+
if job.chart?
job.generate_chart
end
di... | Add ability to save data in JSON format | davy_benchmark-bigo | train | rb,rb |
f478fbc8c06f0234f96d278533d7292f304c1c34 | diff --git a/src/main/java/org/javaspec/runner/Context.java b/src/main/java/org/javaspec/runner/Context.java
index <HASH>..<HASH> 100755
--- a/src/main/java/org/javaspec/runner/Context.java
+++ b/src/main/java/org/javaspec/runner/Context.java
@@ -1,6 +1,7 @@
package org.javaspec.runner;
import java.util.ArrayList... | Don't need a full List when declaring children, since this will be making a defensive copy into its own list anyway. | kkrull_javaspec | train | java |
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.