hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
ba4555800adad1126968ee5e6d5ca3279566265b | diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -8,11 +8,6 @@ require 'spec'
require 'spec/autorun'
require 'analytical'
-require 'analytical/api'
-require 'analytical/modules/base'
-require 'analytical/modules/console'
-requi... | Remove require path to modules in spec_helper | jkrall_analytical | train |
d2ebe52f0eabf6ea2ba87e491a4f6e6571f618c3 | diff --git a/lib/conceptql/operators/temporal_operator.rb b/lib/conceptql/operators/temporal_operator.rb
index <HASH>..<HASH> 100644
--- a/lib/conceptql/operators/temporal_operator.rb
+++ b/lib/conceptql/operators/temporal_operator.rb
@@ -17,7 +17,7 @@ module ConceptQL
option :occurrences, type: :integer, desc: ... | Use \z instead of \Z in regexp
You almost always want \z (end of string) instead of \Z (end of
string or trailing newline). | outcomesinsights_conceptql | train |
1c2f69d2442d801739ba9feb57c9983d98cc36e2 | diff --git a/src/ansiblelint/utils.py b/src/ansiblelint/utils.py
index <HASH>..<HASH> 100644
--- a/src/ansiblelint/utils.py
+++ b/src/ansiblelint/utils.py
@@ -280,7 +280,11 @@ def _include_children(
basedir: str, k: str, v: Any, parent_type: FileType
) -> List[Lintable]:
# handle special case include_tasks: ... | Prevent KeyError[0] exception with ansible.builtin.include_tasks (#<I>) | ansible_ansible-lint | train |
43a461a37fd7e7cb0f0a65686b30f5e5aba92a0c | diff --git a/h2o-algos/src/test/java/hex/glrm/GLRMCategoricalTest.java b/h2o-algos/src/test/java/hex/glrm/GLRMCategoricalTest.java
index <HASH>..<HASH> 100644
--- a/h2o-algos/src/test/java/hex/glrm/GLRMCategoricalTest.java
+++ b/h2o-algos/src/test/java/hex/glrm/GLRMCategoricalTest.java
@@ -203,6 +203,7 @@ public class ... | Reduce max_iterations in a few GLRM tests so runtime is faster | h2oai_h2o-3 | train |
fcaab2c9f16ff1a5c78446e413c61424a9941273 | diff --git a/packages/@ember/-internals/glimmer/tests/integration/components/life-cycle-test.js b/packages/@ember/-internals/glimmer/tests/integration/components/life-cycle-test.js
index <HASH>..<HASH> 100644
--- a/packages/@ember/-internals/glimmer/tests/integration/components/life-cycle-test.js
+++ b/packages/@ember/... | integration/components/life-cycle: fix removeComponent | emberjs_ember.js | train |
7ceb7b01dbc255ff92af40f5b8ba5778cc40af15 | diff --git a/src/MarkerCluster.js b/src/MarkerCluster.js
index <HASH>..<HASH> 100644
--- a/src/MarkerCluster.js
+++ b/src/MarkerCluster.js
@@ -115,7 +115,7 @@ L.MarkerCluster = L.Marker.extend({
}
if (result) {
- if (!this._zoom) {
+ if (!('_zoom' in this)) {
this.setIcon(this._group.options.iconCreate... | Working towards getting addLayer/removeLayer working again | Leaflet_Leaflet.markercluster | train |
3431f8a03cf39ec1777844b13f13639f98e1c9e5 | diff --git a/lib/phusion_passenger/abstract_installer.rb b/lib/phusion_passenger/abstract_installer.rb
index <HASH>..<HASH> 100644
--- a/lib/phusion_passenger/abstract_installer.rb
+++ b/lib/phusion_passenger/abstract_installer.rb
@@ -1,5 +1,5 @@
# Phusion Passenger - https://www.phusionpassenger.com/
-# Copyright (... | When checking dependencies, print PlatformInfo logs with an indentation that makes them easier to read. | phusion_passenger | train |
1695ca1f9c798b91547f626d6a19b8225f3a8ae9 | diff --git a/src/main/java/com/googlecode/lanterna/terminal/ansi/TelnetTerminalServer.java b/src/main/java/com/googlecode/lanterna/terminal/ansi/TelnetTerminalServer.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/googlecode/lanterna/terminal/ansi/TelnetTerminalServer.java
+++ b/src/main/java/com/googlecode/la... | [Issue <I>] Expose the whole server socket instead | mabe02_lanterna | train |
07a40610363199f994ec0767092d18502898b8de | diff --git a/bika/lims/testing.py b/bika/lims/testing.py
index <HASH>..<HASH> 100644
--- a/bika/lims/testing.py
+++ b/bika/lims/testing.py
@@ -229,7 +229,7 @@ class RemoteKeywords(Keywords, RemoteLibrary):
container = portal.restrictedTraverse(path.strip('/').split('/'))
# create object
obj =... | robot-keyword "Create Object" creates correct IDs | senaite_senaite.core | train |
3709299932b328b266fe92aedef7d07da3a4cd73 | diff --git a/lib/celluloid/logging/incident_logger.rb b/lib/celluloid/logging/incident_logger.rb
index <HASH>..<HASH> 100644
--- a/lib/celluloid/logging/incident_logger.rb
+++ b/lib/celluloid/logging/incident_logger.rb
@@ -111,7 +111,7 @@ module Celluloid
end
def incident_topic
- "log.incident"
+ ... | publish to a progname topic
In case anyone wants to filter incidents by progname. | celluloid_celluloid | train |
c82a4b03ee2637215a54f0b61f86e3d51abca041 | diff --git a/src/rez/package_test.py b/src/rez/package_test.py
index <HASH>..<HASH> 100644
--- a/src/rez/package_test.py
+++ b/src/rez/package_test.py
@@ -203,7 +203,7 @@ class PackageTestRunner(object):
else:
cmd_str = ' '.join(map(quote, command))
- print_header(... | package_test.py: fix rez-test header command with % | nerdvegas_rez | train |
3464b8fe75eff9f92bd9fa353772e85588389afc | diff --git a/juicer/juicer/Juicer.py b/juicer/juicer/Juicer.py
index <HASH>..<HASH> 100644
--- a/juicer/juicer/Juicer.py
+++ b/juicer/juicer/Juicer.py
@@ -160,6 +160,7 @@ class Juicer(object):
for repo in repos:
juicer.utils.Log.log_debug("Processing items for repository: '%s'" % repo)
... | repoid should have been repo-env | juicer_juicer | train |
436fa696c380b6324dde4325d3b78c61409b0ca2 | diff --git a/app/scripts/AnnotationsInsets.js b/app/scripts/AnnotationsInsets.js
index <HASH>..<HASH> 100644
--- a/app/scripts/AnnotationsInsets.js
+++ b/app/scripts/AnnotationsInsets.js
@@ -274,7 +274,7 @@ class AnnotationsInsets {
let addheight = 0;
if (isWithRepresentatives) {
// The maximum gallery... | Show number for more than 4 patterns in a cluster | higlass_higlass | train |
e1c411837c4c8a1580970887ee3cc867fa354abd | diff --git a/lib/vanity/experiment/ab_test.rb b/lib/vanity/experiment/ab_test.rb
index <HASH>..<HASH> 100644
--- a/lib/vanity/experiment/ab_test.rb
+++ b/lib/vanity/experiment/ab_test.rb
@@ -132,26 +132,8 @@ module Vanity
identity = identity()
index = connection.ab_showing(@id, identity)
... | Call on_assignment and perform rebalance when using js
Includes a nice refactor. | assaf_vanity | train |
1dd420b58c3a82acb7ee9834dfd16d6ed2803e84 | diff --git a/core/src/main/java/com/orientechnologies/orient/core/record/impl/ODocument.java b/core/src/main/java/com/orientechnologies/orient/core/record/impl/ODocument.java
index <HASH>..<HASH> 100755
--- a/core/src/main/java/com/orientechnologies/orient/core/record/impl/ODocument.java
+++ b/core/src/main/java/com/or... | Doc: added on detach() | orientechnologies_orientdb | train |
88f4d3db42e52d24839dd2038d9ab73e72fe446d | diff --git a/content/template/programme/template/detail-list.php b/content/template/programme/template/detail-list.php
index <HASH>..<HASH> 100644
--- a/content/template/programme/template/detail-list.php
+++ b/content/template/programme/template/detail-list.php
@@ -13,6 +13,7 @@ foreach ( $grouped_programmes as $group... | feat: 🎸 Showing city (if available) on programme starts | MultinetInteractive_EduAdmin-WordPress | train |
72928f189f67d23f4c0d3e1d41035248ac4b2d10 | diff --git a/FlowCal/excel_ui.py b/FlowCal/excel_ui.py
index <HASH>..<HASH> 100644
--- a/FlowCal/excel_ui.py
+++ b/FlowCal/excel_ui.py
@@ -169,8 +169,14 @@ def write_workbook(filename, table_list, column_width=None):
# Modify default header format
# Pandas' default header format is bold text with thin borders... | Fix incompatibility with pandas <I>. | taborlab_FlowCal | train |
42390d4390f49f2b5c9a7a76b7fcbb453c66b95d | diff --git a/tests/test_envelope.py b/tests/test_envelope.py
index <HASH>..<HASH> 100644
--- a/tests/test_envelope.py
+++ b/tests/test_envelope.py
@@ -34,7 +34,9 @@ class TestEnvelope:
def test_attrs(self, envelope):
assert envelope.sender == 'Me <me@mail.com>'
assert envelope.receivers == ['him@... | separate test case for Envelope.mail_from | eugene-eeo_mailthon | train |
7d59f2b47602ca2ce3fba75dacd4bc00436e0ede | diff --git a/test/rql_test/Makefile b/test/rql_test/Makefile
index <HASH>..<HASH> 100644
--- a/test/rql_test/Makefile
+++ b/test/rql_test/Makefile
@@ -23,14 +23,8 @@ DRIVER_PORT ?= 28015+$(PORT_OFFSET)
CLUSTER_PORT ?= 29015+$(PORT_OFFSET)
EXECUTABLE := $(BUILD_DIR)/rethinkdb
-JS_DRIVER := node_modules/rethinkdb/.
-... | Do not install the javascript driver when running tests
Closes #<I>
Review <I> by @wmrowan | rethinkdb_rethinkdb | train |
5420e13f1417634d30ee4cfa044eb82301d9dfc5 | diff --git a/plugins/parsers/grok/parser.go b/plugins/parsers/grok/parser.go
index <HASH>..<HASH> 100644
--- a/plugins/parsers/grok/parser.go
+++ b/plugins/parsers/grok/parser.go
@@ -344,6 +344,9 @@ func (p *Parser) ParseLine(line string) (telegraf.Metric, error) {
v = strings.Replace(v, ",", ".", -1)
ts, err :... | Fix divide by zero in logparser input (#<I>) | influxdata_telegraf | train |
b4518692f89c0d0edb59e4fdc8b4c05f3d4ea8b0 | diff --git a/pyhs2/TCLIService/ttypes.py b/pyhs2/TCLIService/ttypes.py
index <HASH>..<HASH> 100644
--- a/pyhs2/TCLIService/ttypes.py
+++ b/pyhs2/TCLIService/ttypes.py
@@ -44,6 +44,10 @@ class TTypeId:
UNION_TYPE = 13
USER_DEFINED_TYPE = 14
DECIMAL_TYPE = 15
+ NULL_TYPE = 16
+ DATE_TYPE = 17
+ VARCHAR_TYPE =... | Add new data types for the Thrift Client | BradRuderman_pyhs2 | train |
a9bdbed4eca9153a55ff4f2819427626b150cc84 | diff --git a/packages/ecmaless-compiler/src/c/ExportBlock.js b/packages/ecmaless-compiler/src/c/ExportBlock.js
index <HASH>..<HASH> 100644
--- a/packages/ecmaless-compiler/src/c/ExportBlock.js
+++ b/packages/ecmaless-compiler/src/c/ExportBlock.js
@@ -1,36 +1,6 @@
var _ = require("lodash");
var e = require("estree-bui... | don't actually export the object json structure | farskipper_ecmaless | train |
d4eba2ce898083c6080394b8c16de3edc3b8457c | diff --git a/websockets/src/main/java/io/undertow/websockets/version00/WebSocket00Channel.java b/websockets/src/main/java/io/undertow/websockets/version00/WebSocket00Channel.java
index <HASH>..<HASH> 100644
--- a/websockets/src/main/java/io/undertow/websockets/version00/WebSocket00Channel.java
+++ b/websockets/src/main... | Discard data after close frame was received when using websockets <I> | undertow-io_undertow | train |
29800b6e930b385932750f10aaa83c9e194b30c9 | diff --git a/detectem/core.py b/detectem/core.py
index <HASH>..<HASH> 100644
--- a/detectem/core.py
+++ b/detectem/core.py
@@ -75,7 +75,6 @@ class Detector():
self._results.add(
IndicatorResult(plugin.name, plugin.homepage)
)
- import... | Removed debug statement and matcher handling | alertot_detectem | train |
ee3b72ebb4ca355488bf06affda6b67ec913b7d7 | diff --git a/src/WebPageInspector.php b/src/WebPageInspector.php
index <HASH>..<HASH> 100644
--- a/src/WebPageInspector.php
+++ b/src/WebPageInspector.php
@@ -7,10 +7,6 @@ use webignition\WebResourceInterfaces\WebPageInterface;
class WebPageInspector
{
- const CHARSET_GB2312 = 'GB2312';
- const CHARSET_BIG5 =... | Remove WebPageInspector::CHARSET_* constants (#<I>) | webignition_web-page-inspector | train |
00b8254066f5405e8b2936c128e4b6eaf0dc9aed | diff --git a/src/Context/Website/ConfigurableUrlToWebsiteMap.php b/src/Context/Website/ConfigurableUrlToWebsiteMap.php
index <HASH>..<HASH> 100644
--- a/src/Context/Website/ConfigurableUrlToWebsiteMap.php
+++ b/src/Context/Website/ConfigurableUrlToWebsiteMap.php
@@ -91,7 +91,7 @@ class ConfigurableUrlToWebsiteMap imple... | Issue #<I>: Modify ConfigurableUrlToWebsiteMap to match beginning of a URL | lizards-and-pumpkins_catalog | train |
6797bd23901dd2484c435392a018517385b6eecd | diff --git a/glue/ligolw/ligolw.py b/glue/ligolw/ligolw.py
index <HASH>..<HASH> 100644
--- a/glue/ligolw/ligolw.py
+++ b/glue/ligolw/ligolw.py
@@ -108,7 +108,7 @@ class attributeproxy(property):
if default is not None:
doc += " Default is \"%s\" if not set." % str(default)
# initialize the property object
... | ligolw.attributeproxy: add support for read-only attributes
- select by setting enc to None | gwastro_pycbc-glue | train |
8249cd611dc7b2cdbd254d4645032ecad468002b | diff --git a/pkg/kubelet/cm/cpumanager/cpu_manager.go b/pkg/kubelet/cm/cpumanager/cpu_manager.go
index <HASH>..<HASH> 100644
--- a/pkg/kubelet/cm/cpumanager/cpu_manager.go
+++ b/pkg/kubelet/cm/cpumanager/cpu_manager.go
@@ -458,9 +458,9 @@ func findContainerIDByName(status *v1.PodStatus, name string) (string, error) {
... | Fix variable 'state' collides with imported package name | kubernetes_kubernetes | train |
74e9cef2e9acee564a47d81b875aeb6fa4e217a3 | diff --git a/src/de/unihd/dbs/uima/annotator/heideltime/HeidelTime.java b/src/de/unihd/dbs/uima/annotator/heideltime/HeidelTime.java
index <HASH>..<HASH> 100644
--- a/src/de/unihd/dbs/uima/annotator/heideltime/HeidelTime.java
+++ b/src/de/unihd/dbs/uima/annotator/heideltime/HeidelTime.java
@@ -254,8 +254,8 @@ public cl... | changed project link in debugging message to new github page | HeidelTime_heideltime | train |
1737063904dbcc311bee64b4c48548549006e62e | diff --git a/pkg/beam/unix.go b/pkg/beam/unix.go
index <HASH>..<HASH> 100644
--- a/pkg/beam/unix.go
+++ b/pkg/beam/unix.go
@@ -9,7 +9,9 @@ import (
)
func debugCheckpoint(msg string, args ...interface{}) {
- return
+ if os.Getenv("DEBUG") == "" {
+ return
+ }
os.Stdout.Sync()
tty,_ := os.OpenFile("/dev/tty", o... | beam: more hooks for interactive debugging
This inserts low-level hooks for interactive step-by-step debugging.
Hooks are triggered by setting the *TEST* environment variable.
This is particularly useful for tracking down file descriptor leaks,
double-closing, or other issues which are difficult to debug with
the usu... | containers_storage | train |
d8317b58eaaca79fa50019ba605927312a748514 | diff --git a/spanner/google/cloud/spanner_v1/database.py b/spanner/google/cloud/spanner_v1/database.py
index <HASH>..<HASH> 100644
--- a/spanner/google/cloud/spanner_v1/database.py
+++ b/spanner/google/cloud/spanner_v1/database.py
@@ -17,19 +17,20 @@
import re
import threading
+from google.api_core import exception... | Spanner: Use details from gRPC exception on datatbase create failure (#<I>)
Closes #<I>.
Also adds a system test to verify this. | googleapis_google-cloud-python | train |
6a7b9da2aece53f40512c5c1b43c71303a970de8 | diff --git a/tests/test_modeling_albert.py b/tests/test_modeling_albert.py
index <HASH>..<HASH> 100644
--- a/tests/test_modeling_albert.py
+++ b/tests/test_modeling_albert.py
@@ -299,7 +299,8 @@ class AlbertModelIntegrationTest(unittest.TestCase):
model = AlbertModel.from_pretrained("albert-base-v2")
... | Add 'with torch.no_grad()' to integration test forward pass (#<I>) | huggingface_pytorch-pretrained-BERT | train |
e3ad12d167f481dc630ee621a346ea6810d1e733 | diff --git a/asyncpg/pool.py b/asyncpg/pool.py
index <HASH>..<HASH> 100644
--- a/asyncpg/pool.py
+++ b/asyncpg/pool.py
@@ -124,6 +124,8 @@ class PoolConnectionHolder:
self._con = await self._pool._get_new_connection()
self._generation = self._pool._generation
+ self._maybe_cancel_inactive_cal... | Make sure idle never-acquired pool connections are closed due to inactivity
The `max_inactive_connection_lifetime` setting currently fails to apply
to the connection which were never acquired because
`_setup_inactive_callback()` is only called in `release()`.
Fixes: #<I> | MagicStack_asyncpg | train |
c31df75a664fd5f5e234f7aa6b5884cd687273cb | diff --git a/jbpm-services/jbpm-kie-services/src/main/java/org/jbpm/kie/services/impl/RuntimeDataServiceImpl.java b/jbpm-services/jbpm-kie-services/src/main/java/org/jbpm/kie/services/impl/RuntimeDataServiceImpl.java
index <HASH>..<HASH> 100644
--- a/jbpm-services/jbpm-kie-services/src/main/java/org/jbpm/kie/services/i... | RHPAM-<I>: Error in the tasks search by potential owners (#<I>) | kiegroup_jbpm | train |
a91b802a37a57a2c08ec4f4df825b92ab3bc53f9 | diff --git a/readme.md b/readme.md
index <HASH>..<HASH> 100644
--- a/readme.md
+++ b/readme.md
@@ -80,6 +80,7 @@
- Added `dd` and `array_pull` helpers.
- Fix bug that caused plualizer to not respect casing.
- Fix attribute handling bug in validation messages like `required_if`, etc.
+- Include CSRF tokens by default... | Include CSRF tokens by default in every non-GET form. #<I>. | laravel_framework | train |
a967d90d29c660b9fa7b5a97c3cadf8a64067cf4 | diff --git a/http_adapter/default_url_generator.py b/http_adapter/default_url_generator.py
index <HASH>..<HASH> 100644
--- a/http_adapter/default_url_generator.py
+++ b/http_adapter/default_url_generator.py
@@ -75,6 +75,10 @@ class DefaultUrlGenerator(object):
self.url_construction_snippet = r'(?P<{url_kwarg}>... | removed #todo comments since the funcitionality is implemented | Aplopio_django_rip | train |
122a76d99c2acd797d216898fa67e338abe0d08f | diff --git a/test/test_event_callbacks.py b/test/test_event_callbacks.py
index <HASH>..<HASH> 100644
--- a/test/test_event_callbacks.py
+++ b/test/test_event_callbacks.py
@@ -84,8 +84,8 @@ class TestEventCallbacks(TestCase):
with patch('luigi.worker.time') as mock:
mock.time = times.pop
... | Make the test pass under py<I> version of unittest. | spotify_luigi | train |
85f91aa29d85e238ccccaefa22dd31823144ac61 | diff --git a/sprd/view/ArticleImage.js b/sprd/view/ArticleImage.js
index <HASH>..<HASH> 100644
--- a/sprd/view/ArticleImage.js
+++ b/sprd/view/ArticleImage.js
@@ -24,6 +24,11 @@ define(["sprd/view/ProductImage", "sprd/data/ImageService"], function (ProductIm
url = this.extendUrlWithSizes(url);
+ ... | added support for mediaType in Article- and ProductImage | spreadshirt_rAppid.js-sprd | train |
3bf89663a69e7a84a8701b23e861389efc226bfb | diff --git a/ansi2html/style.py b/ansi2html/style.py
index <HASH>..<HASH> 100644
--- a/ansi2html/style.py
+++ b/ansi2html/style.py
@@ -109,10 +109,13 @@ def get_styles(dark_bg=True, line_wrap=True, scheme='ansi2html'):
for _index in range(8):
css.append(Rule('.ansi3%s' % _index, color=pal[_index]))
... | restore css ordering for unit tests | ralphbean_ansi2html | train |
93561f171b39818cafe8ee06b33ce2269a940d88 | diff --git a/src/Mongolid/ActiveRecord.php b/src/Mongolid/ActiveRecord.php
index <HASH>..<HASH> 100644
--- a/src/Mongolid/ActiveRecord.php
+++ b/src/Mongolid/ActiveRecord.php
@@ -216,11 +216,11 @@ abstract class ActiveRecord
/**
* Performs the given action into database
*
- * @param string $action... | Fix ActiveRecord docblock and type hinting | leroy-merlin-br_mongolid | train |
77993ee6ca1557931668dbca9436f61a34021aa3 | diff --git a/zipline/finance/performance.py b/zipline/finance/performance.py
index <HASH>..<HASH> 100644
--- a/zipline/finance/performance.py
+++ b/zipline/finance/performance.py
@@ -404,7 +404,7 @@ class PerformancePeriod():
def to_dict(self):
"""
Creates a dictionary representing the state of t... | trivial mod to force push to happen. | quantopian_zipline | train |
b927274098c7292f02720a57b5de579124adb15e | diff --git a/assets/js/search-engine.js b/assets/js/search-engine.js
index <HASH>..<HASH> 100644
--- a/assets/js/search-engine.js
+++ b/assets/js/search-engine.js
@@ -2,6 +2,7 @@
'use strict';
+var mergeOptions = require('./merge-options');
var lunr = require('lunr');
var querystring = require('querystring');
v... | Use mergeOptions in SearchEngine and SearchUi | mbland_jekyll_pages_api_search | train |
28d2c61f65962b2960e964ce93a85f62b340d93f | diff --git a/src/rules/FontFaceRule.js b/src/rules/FontFaceRule.js
index <HASH>..<HASH> 100644
--- a/src/rules/FontFaceRule.js
+++ b/src/rules/FontFaceRule.js
@@ -21,6 +21,15 @@ export default class Rule {
* @api public
*/
toString(options) {
+ let str = ''
+ if (Array.isArray(this.style)) {
+ for... | Add support for array of styles for @font-face rule
Also adds a test case to handle @font-face with multiple styles in an
array
Fixes #<I> | cssinjs_jss | train |
df3f9178de584e79a23a83eebfc8d114fee3249a | diff --git a/elastic/datadog_checks/elastic/config_models/validators.py b/elastic/datadog_checks/elastic/config_models/validators.py
index <HASH>..<HASH> 100644
--- a/elastic/datadog_checks/elastic/config_models/validators.py
+++ b/elastic/datadog_checks/elastic/config_models/validators.py
@@ -18,5 +18,9 @@ def initial... | Validate custom query column type (#<I>) | DataDog_integrations-core | train |
f2b4c13ca1d96e82ce86ba23ba0198cc95be371c | diff --git a/pghoard/config.py b/pghoard/config.py
index <HASH>..<HASH> 100644
--- a/pghoard/config.py
+++ b/pghoard/config.py
@@ -60,6 +60,11 @@ def set_config_defaults(config, *, check_commands=True):
site_config.setdefault("object_storage", None)
site_config.setdefault("pg_xlog_directory", "/var/li... | config: ensure local target 'directory' is different from 'backup_location' | aiven_pghoard | train |
64100681e10d60f497815391e0cda5cabd60401c | diff --git a/restclients/dao_implementation/libraries.py b/restclients/dao_implementation/libraries.py
index <HASH>..<HASH> 100644
--- a/restclients/dao_implementation/libraries.py
+++ b/restclients/dao_implementation/libraries.py
@@ -41,6 +41,10 @@ class Live(object):
settings.RESTCLIENTS_LIBRARIES_KE... | Adding rr support for the libraries | uw-it-aca_uw-restclients | train |
9c69d70705d97b2f8a16ebd63fb9cdb08a7393c4 | diff --git a/test/seahorse/client_test.rb b/test/seahorse/client_test.rb
index <HASH>..<HASH> 100644
--- a/test/seahorse/client_test.rb
+++ b/test/seahorse/client_test.rb
@@ -17,7 +17,7 @@ module Seahorse
describe Client do
def api
- { 'endpoint' => 'http://abc.com:123' }
+ { 'endpoint' => 'http://e... | Renamed a test endpoint string to avoid name confusion. | aws_aws-sdk-ruby | train |
92710226a594bcb2c3b31790d433fbf026d839e7 | diff --git a/lib/moodlelib.php b/lib/moodlelib.php
index <HASH>..<HASH> 100644
--- a/lib/moodlelib.php
+++ b/lib/moodlelib.php
@@ -1443,6 +1443,9 @@ function authenticate_user_login($username, $password) {
}
// If this is the admin, then just use internal methods
+ // Doing this first (even though it's l... | Tidy up some of the dox | moodle_moodle | train |
ef69825482384bdfb9dea2d90a844a9aa75eba0d | diff --git a/lancet/harvest.py b/lancet/harvest.py
index <HASH>..<HASH> 100644
--- a/lancet/harvest.py
+++ b/lancet/harvest.py
@@ -3,6 +3,7 @@ import functools
from html.parser import HTMLParser
from urllib.parse import urljoin, urlencode
import requests
+from jira.resources import Issue
class MetaRetriever(HTM... | Get the project from the supertaks if none is found on the subtask. | GaretJax_lancet | train |
ab14a17a91b3a58e4fe5b4d7d70c775c6ec7f7ed | diff --git a/docs/release_notes.rst b/docs/release_notes.rst
index <HASH>..<HASH> 100644
--- a/docs/release_notes.rst
+++ b/docs/release_notes.rst
@@ -2,6 +2,11 @@
Release notes
===============
+Version 1.1.3 (unreleased)
+--------------------------
+
+* Better fix for Django 4.0 form rendering, enabling custom su... | Fixed issue with custom subclasses of PayPalPaymentsForm | spookylukey_django-paypal | train |
050b1c8c3d404a74ea3ac1c25c0db52a33753101 | diff --git a/vivarium/test_util.py b/vivarium/test_util.py
index <HASH>..<HASH> 100644
--- a/vivarium/test_util.py
+++ b/vivarium/test_util.py
@@ -172,5 +172,6 @@ def make_dummy_column(name, initial_value):
event.population_view.update(pd.Series(initial_value, index=event.index, name=name))
return make_co... | Added parameterization to get_randomness | ihmeuw_vivarium | train |
e5d66ad87921d2371ffa33adc8cf2c562acd6fd1 | diff --git a/yoga-core/src/main/java/org/skyscreamer/jsonassert/JSONAssert.java b/yoga-core/src/main/java/org/skyscreamer/jsonassert/JSONAssert.java
index <HASH>..<HASH> 100644
--- a/yoga-core/src/main/java/org/skyscreamer/jsonassert/JSONAssert.java
+++ b/yoga-core/src/main/java/org/skyscreamer/jsonassert/JSONAssert.ja... | Updated javadoc with known issues | skyscreamer_yoga | train |
82f945972eb7c4dd2909263c11b4b7ff2364176d | diff --git a/src/PHPoole.php b/src/PHPoole.php
index <HASH>..<HASH> 100644
--- a/src/PHPoole.php
+++ b/src/PHPoole.php
@@ -102,68 +102,60 @@ class PHPoole implements EventsCapableInterface
protected $fs;
/**
- * Constructor.
+ * PHPoole constructor.
*
- * @param null $sourceDir
- * @p... | Deleting source and destination params
Using setters (with backward compatibility) instead. | Cecilapp_PHPoole | train |
9e4fc846cd0c89e4256aca6f83323536ac2ddb66 | diff --git a/Makefile b/Makefile
index <HASH>..<HASH> 100644
--- a/Makefile
+++ b/Makefile
@@ -51,7 +51,18 @@ testall:
# DOC: Run tests for the currently installed version
test:
- python -Wdefault -m unittest discover
+ # imp warning is a PendingDeprecationWarning for Python 3.4 and Python 3.5
+ # and a Deprecation... | Turn warnings into errors during tests
Deprecation warnings about importing ABCs from the 'collections' module
instead of 'collections.abc' are globally ignored. AFAICT there’s no way
to ignore them only for external dependencies. They’ll turn into errors
from Python <I> anyway.
Fixes #<I> | FactoryBoy_factory_boy | train |
915c86f4ace3a0910553023bc91ee896126a7b29 | diff --git a/velodrome/sql/model.go b/velodrome/sql/model.go
index <HASH>..<HASH> 100644
--- a/velodrome/sql/model.go
+++ b/velodrome/sql/model.go
@@ -23,6 +23,7 @@ import (
// Issue is a pull-request or issue. Its format fits into the ORM
type Issue struct {
+ Repository string
ID int
Labels ... | velodrome: SQL: Add new column for repository
This will allow us to store mutltiple repository in the database. | kubernetes_test-infra | train |
b3de53c55351d028553a31c8e35bd9a05548db09 | diff --git a/test/cache.js b/test/cache.js
index <HASH>..<HASH> 100644
--- a/test/cache.js
+++ b/test/cache.js
@@ -237,7 +237,7 @@ describe('Cache', function() {
var cache = new Blast.Classes.Develry.Cache();
cache.set('e', 5);
- cache.set('d', 4, 1);
+ cache.set('d', 4, 5);
cache.set('c', 3);
cac... | test: fix unit test expiring a key before being able to test it | skerit_protoblast | train |
078931ac35bd7a43f20bca896be056f27cb65fc6 | diff --git a/lib/pry-theme/rgb.rb b/lib/pry-theme/rgb.rb
index <HASH>..<HASH> 100644
--- a/lib/pry-theme/rgb.rb
+++ b/lib/pry-theme/rgb.rb
@@ -157,6 +157,13 @@ module PryTheme
@value
end
+ # @example
+ # RGB.new([0, 0, 0]).to_css #=> 'rgb(0, 0, 0)'
+ # @return [String]
+ def to_css
+ "r... | RGB: add ability to transform itself to CSS def. | kyrylo_pry-theme | train |
dcd5519fa190067574e9fa3fdecaf6b1f1770f35 | diff --git a/graceful_test.go b/graceful_test.go
index <HASH>..<HASH> 100644
--- a/graceful_test.go
+++ b/graceful_test.go
@@ -290,6 +290,9 @@ func TestGracefulExplicitStopOverride(t *testing.T) {
}
func TestBeforeShutdownAndShutdownInitiatedCallbacks(t *testing.T) {
+ var wg sync.WaitGroup
+ wg.Add(1)
+
server, ... | Wait for listening socket to close in shutdown callbacks test
This resolves a failure of the subsequent test with the error
"listen tcp :<I>: bind: address already in use".
Fix #<I> | tylerb_graceful | train |
5d091bde85c512ea4902abc00531a7c04d3659f7 | diff --git a/lib/hipchat.rb b/lib/hipchat.rb
index <HASH>..<HASH> 100644
--- a/lib/hipchat.rb
+++ b/lib/hipchat.rb
@@ -36,9 +36,10 @@ module HipChat
def setup_proxy(proxy_url)
proxy_url = URI.parse(proxy_url)
- self.class.http_proxy("#{proxy_url.scheme}://#{proxy_url.host}",
- ... | Room's proxy setting changes when creating client with proxy | hipchat_hipchat-rb | train |
d5396f4f62f1e1bff016c7756273a88466c4422e | diff --git a/src/com/opencms/workplace/CmsXmlWpTemplateFile.java b/src/com/opencms/workplace/CmsXmlWpTemplateFile.java
index <HASH>..<HASH> 100755
--- a/src/com/opencms/workplace/CmsXmlWpTemplateFile.java
+++ b/src/com/opencms/workplace/CmsXmlWpTemplateFile.java
@@ -14,7 +14,7 @@ import java.util.*;
*
* @author Al... | methods for accessing XML datablocks added | alkacon_opencms-core | train |
15a4c4194112983764c867ab2c802b8fcb53d0e0 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -217,6 +217,9 @@ gateway.delete({ jobName: 'test' }, function(err, resp, body) { }); //Delete all
//All gateway requests can have groupings on it
gateway.pushAdd({ jobName: 'test', groupings: { key: 'value' } }, functi... | Extend with custom request options in Pushgateway
Resolves #<I> | siimon_prom-client | train |
9af6e0ec82b81ce6215bcd17a0c3cb5f20b8fc9a | diff --git a/log/value.go b/log/value.go
index <HASH>..<HASH> 100644
--- a/log/value.go
+++ b/log/value.go
@@ -38,14 +38,14 @@ func containsValuer(keyvals []interface{}) bool {
return false
}
-var (
- // Timestamp returns a Valuer that invokes the underlying function when
- // bound, returning a time.Time. Users w... | Declare Timestamp and Caller as package level functions instead of function variables. | go-kit_kit | train |
0e8bcf7aa863f2b05383dbe3dc9ccd1a5f088724 | diff --git a/tests/UrlTest.php b/tests/UrlTest.php
index <HASH>..<HASH> 100644
--- a/tests/UrlTest.php
+++ b/tests/UrlTest.php
@@ -15,6 +15,9 @@ class UrlTest extends TestCaseBase
['https://animoto.com/oembeds/create.xml?automated=true&options=start_hq', 'https://animoto.com/oembeds/create.xml?automated=tr... | Added tests to ensure URLs with ports or authentication survive parsing in and out | oscarotero_Embed | train |
935b661ce92b045348b5b9dec6a6330ebc8b910e | diff --git a/src/Listeners/CascadeDeleteListener.php b/src/Listeners/CascadeDeleteListener.php
index <HASH>..<HASH> 100755
--- a/src/Listeners/CascadeDeleteListener.php
+++ b/src/Listeners/CascadeDeleteListener.php
@@ -9,8 +9,8 @@ class CascadeDeleteListener
/**
* Handel the event for eloquent delete.
... | Apply fixes from StyleCI (#<I>) | Askedio_laravel-soft-cascade | train |
8b2367b004dd0ce661e27bb79ee3e0eea7a09e05 | diff --git a/src/Commands/MakeEloquentFilter.php b/src/Commands/MakeEloquentFilter.php
index <HASH>..<HASH> 100644
--- a/src/Commands/MakeEloquentFilter.php
+++ b/src/Commands/MakeEloquentFilter.php
@@ -68,7 +68,7 @@ class MakeEloquentFilter extends Command
$stubPath = config('eloquentfilter.generator.stub',... | Use is_readable to support Laravel <I>.* | Tucker-Eric_EloquentFilter | train |
3a971f1ab7b06f18b8da0fbda8e945892df2f03f | diff --git a/src/ResourceView.js b/src/ResourceView.js
index <HASH>..<HASH> 100644
--- a/src/ResourceView.js
+++ b/src/ResourceView.js
@@ -52,6 +52,12 @@ function render_path(path, params) {
/** Builds a builder for REST data views */
function ResourceView(opts) {
var view = this;
+
+ var compute_keys;
+ if(opts &&... | Fixed bug that disabled compute_keys support | sendanor_nor-nopg | train |
18b87f3974722603b2be36c991aad55d1bd25743 | diff --git a/lib/robohydraserver.js b/lib/robohydraserver.js
index <HASH>..<HASH> 100644
--- a/lib/robohydraserver.js
+++ b/lib/robohydraserver.js
@@ -56,12 +56,13 @@ function createRoboHydraServer(config, extraVars) {
// Routes are all dynamic, so we only need a catch-all here
var requestHandler = function(n... | Clean-up the new Response.follow method
* Don't print the deprecation warning for the new method!
* Clean-up embedded documentation
* Make sure "chain" is not called anywhere | robohydra_robohydra | train |
06c5dac0e3c1e4ad7c7dea17c20db0ad77fa3155 | diff --git a/tests/fixtures_add_model.py b/tests/fixtures_add_model.py
index <HASH>..<HASH> 100644
--- a/tests/fixtures_add_model.py
+++ b/tests/fixtures_add_model.py
@@ -34,7 +34,7 @@ class MockTodoItem:
pass
-class ModelWithResourceFieldsNoRequired:
+class MockModelWithResourceFieldsNoRequired:
reso... | Add Mock in front of naming for: ModelWithResourceFieldsNoRequired | rantav_flask-restful-swagger | train |
b31baad5a753afd2522e1cfebb89b670c6179246 | diff --git a/indra/tools/live_curation.py b/indra/tools/live_curation.py
index <HASH>..<HASH> 100644
--- a/indra/tools/live_curation.py
+++ b/indra/tools/live_curation.py
@@ -155,35 +155,35 @@ class Corpus(object):
logger.exception('Failed to put on s3: %s' % e)
return None
- def _save_to... | Allow for not all files to specified in caching | sorgerlab_indra | train |
2ec0f4aac3b524f8d2d91de7c8764eafa40ed8aa | diff --git a/docker/container.go b/docker/container.go
index <HASH>..<HASH> 100644
--- a/docker/container.go
+++ b/docker/container.go
@@ -31,20 +31,25 @@ import (
)
// Container holds information about a docker container and the service it is tied on.
-// It implements Service interface by encapsulating a EmptySer... | Decouple event notify/listener from Project struct
Add two interface in events package (Notifier and Emitter) to decouple
the event listening/notifying from the Project struct.
This allows to not depend on the project struct in Container (and
Service) and thus helps decoupling each components (container, service
and ... | docker_libcompose | train |
809c78afc78597a7355ba2e3962518ebca8a89d7 | diff --git a/scripts/build.js b/scripts/build.js
index <HASH>..<HASH> 100644
--- a/scripts/build.js
+++ b/scripts/build.js
@@ -31,13 +31,20 @@ shell.config.verbose = true;
shell.cd(`${env.sourceFolder}`);
if (env.isWindows) {
- exec(`cmake -DWANT_SYNCAPI=OFF -DCMAKE_GENERATOR_PLATFORM=${process.arch} .`);
- e... | fix: less verbose Windows builds | yfinkelstein_node-zookeeper | train |
960a7a2c532c4e7538d311de368b4ea9021277f5 | diff --git a/lib/asciidoctor/standoc/base.rb b/lib/asciidoctor/standoc/base.rb
index <HASH>..<HASH> 100644
--- a/lib/asciidoctor/standoc/base.rb
+++ b/lib/asciidoctor/standoc/base.rb
@@ -86,10 +86,13 @@ module Asciidoctor
@files_to_delete = []
@filename = node.attr("docfile") ?
node.attr("d... | data uri processing moved to XML; closes #<I> | metanorma_metanorma-standoc | train |
a188a3ed734e3d551d0404854e7795d74534c0a6 | diff --git a/slf4j-reload4j/src/main/java/org/slf4j/reload4j/Reload4jLoggerAdapter.java b/slf4j-reload4j/src/main/java/org/slf4j/reload4j/Reload4jLoggerAdapter.java
index <HASH>..<HASH> 100644
--- a/slf4j-reload4j/src/main/java/org/slf4j/reload4j/Reload4jLoggerAdapter.java
+++ b/slf4j-reload4j/src/main/java/org/slf4j/r... | Fix typo abbreviation for fully-qualified class name. | qos-ch_slf4j | train |
4c7548782aeb79cf2c5e320a6e14ec56d8a3fc1e | diff --git a/src/RedLock.php b/src/RedLock.php
index <HASH>..<HASH> 100644
--- a/src/RedLock.php
+++ b/src/RedLock.php
@@ -53,11 +53,11 @@ class RedLock
* @return array|bool
* @throws \Exception
*/
- public function lock($resource, $ttl)
+ public function lock($resource, $ttl = 10000)
{
... | Use a value more unique than uniqid, which could be duplicated if running across lots of machines | signe_redlock-php | train |
e930c2d56fd23194b2a35329d906a55ae14b8c7a | diff --git a/benchexec/container.py b/benchexec/container.py
index <HASH>..<HASH> 100644
--- a/benchexec/container.py
+++ b/benchexec/container.py
@@ -134,6 +134,9 @@ if not hasattr(ctypes.pythonapi, "PyOS_AfterFork_Parent"):
if not hasattr(ctypes.pythonapi, "PyOS_AfterFork_Child"):
ctypes.pythonapi.PyOS_AfterFor... | Fix signature of clone callback
clone expects a function that takes a void* parameter,
but we passed a function that takes no parameters.
This should work in practice but is undefined behavior.
When we fix this, we also no longer need to use a nested function
as callback. | sosy-lab_benchexec | train |
5ed49c0c0374a605e0d50f03ae40e13c9e29f3e0 | diff --git a/src/Psalm/Internal/Analyzer/Statements/Expression/Fetch/ConstFetchAnalyzer.php b/src/Psalm/Internal/Analyzer/Statements/Expression/Fetch/ConstFetchAnalyzer.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Internal/Analyzer/Statements/Expression/Fetch/ConstFetchAnalyzer.php
+++ b/src/Psalm/Internal/Analyzer/... | Fixed #<I> - allow static class strings to be compared | vimeo_psalm | train |
a4ed9134f6626901f8ed4397f97967a776805d53 | diff --git a/bitstring.py b/bitstring.py
index <HASH>..<HASH> 100644
--- a/bitstring.py
+++ b/bitstring.py
@@ -220,10 +220,10 @@ def tokenparser(format, keys=None, token_cache={}):
return stretchy_token, return_values
# This byte to bitstring lookup really speeds things up.
-BYTE_TO_BITS = ['{0:08b}'.format... | Fixing rare but nasty bug in _truncatestart. | scott-griffiths_bitstring | train |
3b0be9b51b2eb8be54d2987407d45fe2faea56cc | diff --git a/test/test_scripts.py b/test/test_scripts.py
index <HASH>..<HASH> 100644
--- a/test/test_scripts.py
+++ b/test/test_scripts.py
@@ -28,7 +28,12 @@ class CanScriptTest(unittest.TestCase, metaclass=ABCMeta):
"""
for command in self._commands():
try:
- subprocess.ch... | try to fix test under Windows/tox | hardbyte_python-can | train |
78f24dd16bd4df710db29537aa376125dcc4a515 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ license: GNU-GPL2
from setuptools import setup
setup(name='pyprofiler',
- version='18',
+ version='19',
description='Profiler utility for python, graphical and textual, whole program or segmen... | pip
Sunday <I> March <I> (week:9 day:<I>), <I>:<I>:<I> | erikdejonge_pyprofiler | train |
f4f8bfc72096d234be3552a76239c323ffd3f186 | diff --git a/spec/premailer-rails3/css_helper_spec.rb b/spec/premailer-rails3/css_helper_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/premailer-rails3/css_helper_spec.rb
+++ b/spec/premailer-rails3/css_helper_spec.rb
@@ -129,6 +129,17 @@ describe PremailerRails::CSSHelper do
load_css_at_path('http://example.... | Add spec for fingerprinted paths | fphilipe_premailer-rails | train |
45a6705befd005f8b9d8e3b42d87ca1a1b8c8dd4 | diff --git a/projects/models.py b/projects/models.py
index <HASH>..<HASH> 100644
--- a/projects/models.py
+++ b/projects/models.py
@@ -78,11 +78,8 @@ class Stage(TrackingFields):
return self.project.get_absolute_url()
- def get_configurations(self):
+ def get_queryset_configurations(self, **kwargs):
... | Updated the stage model to get a list of orm objects for the configuration that will be used during deployment. | fabric-bolt_fabric-bolt | train |
0780c6d177413d1c71db14505b4260210b981e6c | diff --git a/backtrader/plot/__init__.py b/backtrader/plot/__init__.py
index <HASH>..<HASH> 100644
--- a/backtrader/plot/__init__.py
+++ b/backtrader/plot/__init__.py
@@ -26,6 +26,8 @@ try:
except ImportError:
raise ImportError(
'Matplotlib seems to be missing. Needed for plotting support')
+else:
+ m... | Closes #<I> by setting the matplotlib backend to "tkagg" to avoid using other non-tested backends | backtrader_backtrader | train |
173567d34e633dca19579b87f26f3ec0dc56ee87 | diff --git a/src/TacticianServiceProvider.php b/src/TacticianServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/TacticianServiceProvider.php
+++ b/src/TacticianServiceProvider.php
@@ -193,7 +193,11 @@ class TacticianServiceProvider extends ServiceProvider
$resolved = array_map(function($name) {
- ... | Now uses IoC to resolve the custom middleware | gearhub_tactician-for-laravel | train |
8e2f754a83d9a71c2322f3a61e3b59634cd94ab5 | diff --git a/skein/core.py b/skein/core.py
index <HASH>..<HASH> 100644
--- a/skein/core.py
+++ b/skein/core.py
@@ -369,6 +369,9 @@ class Client(_ClientBase):
proc.wait()
raise
+ def __reduce__(self):
+ return (type(self), (self.address, self.security))
+
@classmethod
... | Make `skein.Client` picklable (#<I>)
Unpickling will only work on the same machine the driver is running on.
This is mostly useful for starting a single temporary client and using
it in child processes via multiprocessing. | jcrist_skein | train |
dcc8220f65ba99795141566bf76879297e960c4a | diff --git a/openquake/calculators/classical.py b/openquake/calculators/classical.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/classical.py
+++ b/openquake/calculators/classical.py
@@ -436,10 +436,9 @@ class ClassicalCalculator(PSHACalculator):
logging.info('Building hazard curves')
wi... | Using Processmap for computing the statistical curves
Former-commit-id: a<I>acefdf8d<I>bcb9bf0f<I>ba<I>f<I> | gem_oq-engine | train |
e3b273752efadeefabd99452b45dc489d049d7ee | diff --git a/helpers/form/elements/xhtml/class.AsyncFile.php b/helpers/form/elements/xhtml/class.AsyncFile.php
index <HASH>..<HASH> 100755
--- a/helpers/form/elements/xhtml/class.AsyncFile.php
+++ b/helpers/form/elements/xhtml/class.AsyncFile.php
@@ -121,13 +121,14 @@ class tao_helpers_form_elements_xhtml_AsyncFile
... | fixed issue with drag'n'drop to upload control in Chrome, client mime validation in IE | oat-sa_tao-core | train |
57ed4b55a4ee544372b02b5fe2edfe4a34f6a010 | diff --git a/wp_summary.py b/wp_summary.py
index <HASH>..<HASH> 100755
--- a/wp_summary.py
+++ b/wp_summary.py
@@ -33,28 +33,27 @@ from collections import defaultdict
DEBUG = False
DEFAULT = 'text'
FORMATS = ['dict', 'json', 'text']
-RELATED = []
-def from_api(titles, _format=DEFAULT):
+def from_api(titles, _for... | added _related_terms() and made them optional. | siznax_wptools | train |
43628609f4b6eefe1e73f7842093457517782f88 | diff --git a/packages/ember-routing/lib/system/route.js b/packages/ember-routing/lib/system/route.js
index <HASH>..<HASH> 100644
--- a/packages/ember-routing/lib/system/route.js
+++ b/packages/ember-routing/lib/system/route.js
@@ -655,7 +655,7 @@ Ember.Route = Ember.Object.extend({
var container = this.container... | Allow a template explicitly set on a view to be used when rendering a route. | emberjs_ember.js | train |
22e990b77cfd937fedae4fb247ca69b10cf5440a | diff --git a/lib/pagination/collection.rb b/lib/pagination/collection.rb
index <HASH>..<HASH> 100644
--- a/lib/pagination/collection.rb
+++ b/lib/pagination/collection.rb
@@ -4,7 +4,9 @@ module Pagination
include Enumerable
- attr :page, :per_page, :total
+ attr :page
+ attr :per_page
+ attr :total... | changed the multi-line attr to single line attrs instead | sinefunc_pagination | train |
77ac7bdbdeb81796cd4543eaabb0839c53500cec | diff --git a/source/rafcon/mvc/controllers/utils/tree_view_controller.py b/source/rafcon/mvc/controllers/utils/tree_view_controller.py
index <HASH>..<HASH> 100644
--- a/source/rafcon/mvc/controllers/utils/tree_view_controller.py
+++ b/source/rafcon/mvc/controllers/utils/tree_view_controller.py
@@ -66,14 +66,24 @@ class... | Ensure existence before removing handler
Check whether a handler exists before removing it. This fixes issues
when tabbing through the GUI and causing one handler to be removed
twice. | DLR-RM_RAFCON | train |
278a9d70c8c04766a7562c5964dd4de167cb33dc | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -133,7 +133,6 @@ http://<thumbor-server>/300x200/smart/thumbor.readthedocs.io/en/latest/_images/l
"Pillow>=9.0.0",
"pytz>=2019.3.0",
"statsd==3.*,>=3.3.0",
- "socketfromfd>=0.2... | Remove socketfromfd dependency to be able to launch thumbor with the --fd option (#<I>) | thumbor_thumbor | train |
feeeff9cff7b06d7908cea1aeebcbcca97a8ccee | diff --git a/tests/HGG/Pardot/Test/JsonParserTest.php b/tests/HGG/Pardot/Test/JsonParserTest.php
index <HASH>..<HASH> 100644
--- a/tests/HGG/Pardot/Test/JsonParserTest.php
+++ b/tests/HGG/Pardot/Test/JsonParserTest.php
@@ -25,8 +25,8 @@ class JsonParserTest extends \PHPUnit_Framework_TestCase
*/
public funct... | Update tests to include new functionality of the JSON response handler | hglattergotz_pardot | train |
951fe4d9925e978b0d85e83f2d7b0a9a2340a01d | diff --git a/test.js b/test.js
index <HASH>..<HASH> 100644
--- a/test.js
+++ b/test.js
@@ -846,4 +846,21 @@ test("advanced selectors", async t => {
t.is("div > p:nth-of-type(2)" in output, true)
t.is("div > [data-component-name='Hello']" in output, true)
+})
+
+test("css vars", async t => {
+ let output = await p... | added another test for css vars | sylvainpolletvillard_postcss-grid-kiss | train |
3e43eff5dc8af28cadd64506f63edaaa3954688e | diff --git a/grade/grading/form/lib.php b/grade/grading/form/lib.php
index <HASH>..<HASH> 100644
--- a/grade/grading/form/lib.php
+++ b/grade/grading/form/lib.php
@@ -30,7 +30,7 @@ defined('MOODLE_INTERNAL') || die();
* @copyright 2011 David Mudrak <david@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.htm... | MDL-<I> Improved gradingform_controller base class | moodle_moodle | train |
61ec8d13476b0d21ae57f72bea9075dffe162d6a | diff --git a/fwdpy11/wright_fisher.py b/fwdpy11/wright_fisher.py
index <HASH>..<HASH> 100644
--- a/fwdpy11/wright_fisher.py
+++ b/fwdpy11/wright_fisher.py
@@ -49,9 +49,13 @@ def evolve(rng, pop, params, recorder=None):
from fwdpy11 import RecombinationRegions
if pop.__class__ is fwdpy11.SlocusPop:
fr... | Allow GeneralizedGeneticMap to be used in sims w/o tree sequences. | molpopgen_fwdpy11 | train |
3d4eec2d3e6c824099ffbedf0d881c6ddfe2bdd7 | diff --git a/beatrix/src/test/java/org/killbill/billing/beatrix/integration/overdue/TestOverdueIntegration.java b/beatrix/src/test/java/org/killbill/billing/beatrix/integration/overdue/TestOverdueIntegration.java
index <HASH>..<HASH> 100644
--- a/beatrix/src/test/java/org/killbill/billing/beatrix/integration/overdue/Te... | beatrix: minor CR in test comment | killbill_killbill | train |
1cc0f67894ef5d25f2b6875bb6bdf07fc40c5860 | diff --git a/src/viz.js b/src/viz.js
index <HASH>..<HASH> 100644
--- a/src/viz.js
+++ b/src/viz.js
@@ -41,6 +41,11 @@ d3plus.viz = function() {
vars.parent
.style("overflow","hidden")
+ .style("position",function(){
+ var current = d3.select(this).style("position"),
+ ... | fixed relative positioning of tooltips in visualization div | alexandersimoes_d3plus | train |
bd6807214c3660600341c99b09a1a9b8f8a29ee4 | diff --git a/Controller/Adminhtml/Menu/ImportPost.php b/Controller/Adminhtml/Menu/ImportPost.php
index <HASH>..<HASH> 100755
--- a/Controller/Adminhtml/Menu/ImportPost.php
+++ b/Controller/Adminhtml/Menu/ImportPost.php
@@ -4,6 +4,7 @@ namespace Snowdog\Menu\Controller\Adminhtml\Menu;
use Magento\Backend\App\Action;
... | [<I>] Handle redirect referers that are base URL in menu admin controller import post action | SnowdogApps_magento2-menu | train |
bafec18811452965aef4d8ba2b6500d0b2b3a1e0 | diff --git a/src/blanket.js b/src/blanket.js
index <HASH>..<HASH> 100644
--- a/src/blanket.js
+++ b/src/blanket.js
@@ -4,7 +4,6 @@ var parseAndModify = (inBrowser ? window.falafel : require("./lib/falafel").fala
(inBrowser ? window : exports).blanket = (function(){
var linesToAddTracking = [
"ExpressionS... | Require timeout extended
Removed labelled statements from instrumentation | alex-seville_blanket | train |
ad350f0670d2e4db31c1af3615532004c9ea842c | diff --git a/dtoolcore/__init__.py b/dtoolcore/__init__.py
index <HASH>..<HASH> 100644
--- a/dtoolcore/__init__.py
+++ b/dtoolcore/__init__.py
@@ -703,7 +703,20 @@ class DataSetCreator(object):
if exception_type is None:
self.proto_dataset.freeze()
+
@property
def uri(self):
"... | Add put_item method on DataSetCreator | jic-dtool_dtoolcore | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.