hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
7f9d3f9ba74bae07cfd9c702bfb28f16fb567813 | diff --git a/storage.js b/storage.js
index <HASH>..<HASH> 100644
--- a/storage.js
+++ b/storage.js
@@ -1345,6 +1345,7 @@ function forgetUnit(unit){
throw Error("trying to forget stable unit "+unit);
delete assocStableUnits[unit];
delete assocUnstableMessages[unit];
+ delete assocBestChildren[unit];
}
// pare... | delete from assocBestChildren when forgetting unit | byteball_ocore | train |
f6f67314dad8b90ca22b918de033257f189e3dcb | diff --git a/src/Services/QueuedJobService.php b/src/Services/QueuedJobService.php
index <HASH>..<HASH> 100644
--- a/src/Services/QueuedJobService.php
+++ b/src/Services/QueuedJobService.php
@@ -906,7 +906,7 @@ class QueuedJobService
*/
protected function markStarted()
{
- if ($this->startedAt) {... | Fix markStarted not calculating timeout correctly | symbiote_silverstripe-queuedjobs | train |
e6d0dbd00887b4d289c748bd27dc9e3cc1822047 | diff --git a/core-bundle/src/Resources/contao/dca/tl_content.php b/core-bundle/src/Resources/contao/dca/tl_content.php
index <HASH>..<HASH> 100644
--- a/core-bundle/src/Resources/contao/dca/tl_content.php
+++ b/core-bundle/src/Resources/contao/dca/tl_content.php
@@ -212,7 +212,11 @@ $GLOBALS['TL_DCA']['tl_content'] = a... | [Core] Pre-fill the "alt" and "caption" fields with the file meta data (see #<I>) | contao_contao | train |
981d9bbbcddbb7263553dc7248a2d5e83ae79f4b | diff --git a/Listener/LastLoginListener.php b/Listener/LastLoginListener.php
index <HASH>..<HASH> 100644
--- a/Listener/LastLoginListener.php
+++ b/Listener/LastLoginListener.php
@@ -29,11 +29,9 @@ class LastLoginListener implements EventSubscriberInterface
*/
public static function getSubscribedEvents()
... | removing call to non-existent parent | xmmedia_XMSecurityBundle | train |
a4df3f86737ca42101e65b13812c2788b413669f | diff --git a/Cortex/lib/db/cortex.php b/Cortex/lib/db/cortex.php
index <HASH>..<HASH> 100644
--- a/Cortex/lib/db/cortex.php
+++ b/Cortex/lib/db/cortex.php
@@ -492,8 +492,6 @@ class Cortex extends Cursor {
unset($rel);
}
}
- if (is_object($result))
- $result = $th... | ensure that insert, update, save returns hydrated mapper | ikkez_f3-cortex | train |
08adba8a1b30b5fade73547dc31cd9cb83d5fc6d | diff --git a/lib/figaro/error.rb b/lib/figaro/error.rb
index <HASH>..<HASH> 100644
--- a/lib/figaro/error.rb
+++ b/lib/figaro/error.rb
@@ -5,7 +5,7 @@ module Figaro
class MissingKey < Error
def initialize(key)
- super("Missing required Figaro configuration key #{key.inspect}.")
+ super("Missing requ... | Update the missing key error copy to be consistent with missing keys | laserlemon_figaro | train |
d40cc171002be090a158e9a1d5e4f78e606d9674 | diff --git a/cumulusci/oauth/client.py b/cumulusci/oauth/client.py
index <HASH>..<HASH> 100644
--- a/cumulusci/oauth/client.py
+++ b/cumulusci/oauth/client.py
@@ -142,18 +142,17 @@ class OAuth2Client(object):
# 1. Get a callback from Salesforce.
# 2. Timeout
- # for some reason this is requir... | clean up cert even if auth flow failed | SFDO-Tooling_CumulusCI | train |
d4dafd7d3a9162dce3b13e4b24493ca894caaa7d | diff --git a/ipyrad/assemble/write_outfiles.py b/ipyrad/assemble/write_outfiles.py
index <HASH>..<HASH> 100644
--- a/ipyrad/assemble/write_outfiles.py
+++ b/ipyrad/assemble/write_outfiles.py
@@ -1666,7 +1666,7 @@ def make_vcf(data, samples, ipyclient, full=0):
for job in keys:
if not vasyncs[job].... | Fix error handing during writing of vcf file. | dereneaton_ipyrad | train |
543810a44e257573b6b6eacdf993a16e01505118 | diff --git a/jinjasql/core.py b/jinjasql/core.py
index <HASH>..<HASH> 100644
--- a/jinjasql/core.py
+++ b/jinjasql/core.py
@@ -184,9 +184,10 @@ class JinjaSql(object):
query = template.render(data)
bind_params = _thread_local.bind_params
if self.param_style in ('named', 'pyformat'... | Explicitly convert bind_params to list or dict
Earlier, we were returning an OrderedDict. But some sql drivers explicitly require a dict object
Similarly, previously, in case of list, we were returning OrderDict.values(). Now, we explicitly convert that to a list | hashedin_jinjasql | train |
6ac7357435998805db5c1d3665d96e8f1f42a785 | diff --git a/scapy/automaton.py b/scapy/automaton.py
index <HASH>..<HASH> 100644
--- a/scapy/automaton.py
+++ b/scapy/automaton.py
@@ -670,8 +670,6 @@ class Automaton(six.with_metaclass(Automaton_metaclass)):
for stname in self.states:
setattr(self, stname,
_instance_state(ge... | Automaton: avoid a double call to parse_args
First call was in __init__
Second call results from .run() call | secdev_scapy | train |
8ff7e4a19e0996341357b827e15fe13489342838 | diff --git a/lib/graphql_rails/attributes/attribute.rb b/lib/graphql_rails/attributes/attribute.rb
index <HASH>..<HASH> 100644
--- a/lib/graphql_rails/attributes/attribute.rb
+++ b/lib/graphql_rails/attributes/attribute.rb
@@ -60,7 +60,8 @@ module GraphqlRails
*description,
{
method: ... | Fix camelize option forwarding (#<I>)
* Fix camelize option forwarding
* Remove leftover spec.
* Simplify logic in bool method.
* Remove fix from change log, since it's not yet released. | samesystem_graphql_rails | train |
fcf6a494806d53bae455912748ddad2a0ff67883 | diff --git a/tests/expandable/spect.js b/tests/expandable/spect.js
index <HASH>..<HASH> 100644
--- a/tests/expandable/spect.js
+++ b/tests/expandable/spect.js
@@ -68,46 +68,18 @@ describe('Expandable', function () {
});
describe('Should have the following public methods:', function () {
-
- it('.show... | #<I> Expandable: Add more name methods to test. | mercadolibre_chico | train |
ef9a07ab3aca424294c08798a76e7c187f15e3fa | diff --git a/src/bin/metadata_start.py b/src/bin/metadata_start.py
index <HASH>..<HASH> 100755
--- a/src/bin/metadata_start.py
+++ b/src/bin/metadata_start.py
@@ -29,8 +29,8 @@ def main():
metadata_home = mc.metadataDir()
confdir = mc.dirMustExist(mc.confDir(metadata_home))
- logdir = mc.dirMustExist(mc.... | BUG-<I> move log dir setting to after the execution of the metadata-env script | apache_incubator-atlas | train |
9c472564d484e6354219c429f75538ab2625b3cf | diff --git a/lib/checkSystem.js b/lib/checkSystem.js
index <HASH>..<HASH> 100644
--- a/lib/checkSystem.js
+++ b/lib/checkSystem.js
@@ -108,7 +108,7 @@ let check = function(pathToPackage) {
checkerResult.packages.push({
name: name,
validatorFound: true,
- com... | changed exec from a node callback to promise | mohlsen_check-engine | train |
2336ca959af9ed47803e1b986a81c400373cb00f | diff --git a/crossplane/__init__.py b/crossplane/__init__.py
index <HASH>..<HASH> 100644
--- a/crossplane/__init__.py
+++ b/crossplane/__init__.py
@@ -11,7 +11,7 @@ __title__ = 'crossplane'
__summary__ = 'Reliable and fast NGINX configuration file parser.'
__url__ = 'https://github.com/nginxinc/crossplane'
-__versi... | Increased version to <I> | nginxinc_crossplane | train |
bdb9fc6b6c01c644fceb440a261e377d5a119fb6 | diff --git a/examples/cpp/example_test.py b/examples/cpp/example_test.py
index <HASH>..<HASH> 100644
--- a/examples/cpp/example_test.py
+++ b/examples/cpp/example_test.py
@@ -209,7 +209,8 @@ expected conversion_error: "unexpected type, want: uint got: string"
self.maxDiff = None
self.assertRegexpMatch... | PROTON-<I>: Disable intermittently failing test | apache_qpid-proton | train |
00ca34c76f2247958488aa12d1e8b56ac32e9db3 | diff --git a/src/faker/company.js b/src/faker/company.js
index <HASH>..<HASH> 100644
--- a/src/faker/company.js
+++ b/src/faker/company.js
@@ -108,13 +108,6 @@ function mod11(number) {
});
const remainder = sum % 11;
- switch (remainder) {
- case 0:
- return remainder;
- case 1:
- return null;
... | Removed redundant code from company file. | mrstebo_fakergem | train |
8d52be4c4400f8859380f8600177bc2eb87cf31a | diff --git a/pywb/rewrite/rewrite_live.py b/pywb/rewrite/rewrite_live.py
index <HASH>..<HASH> 100644
--- a/pywb/rewrite/rewrite_live.py
+++ b/pywb/rewrite/rewrite_live.py
@@ -15,8 +15,6 @@ from pywb.utils.timeutils import timestamp_now
from pywb.utils.statusandheaders import StatusAndHeaders
from pywb.utils.canonical... | live proxy: enable ssl validation for live proxy, was initially disabled for testing, should be on by default! | webrecorder_pywb | train |
1ff3c79ff6ab20c8ef0facd945972845712ab039 | diff --git a/src/ol/projection.js b/src/ol/projection.js
index <HASH>..<HASH> 100644
--- a/src/ol/projection.js
+++ b/src/ol/projection.js
@@ -39,7 +39,7 @@ ol.ProjectionUnits = {
ol.METERS_PER_UNIT = {};
ol.METERS_PER_UNIT[ol.ProjectionUnits.DEGREES] =
2 * Math.PI * ol.sphere.NORMAL.radius / 360;
-ol.METERS_PER... | Use correct value to convert from foot to meters
(was using value for converting to inches).
Thanks @twpayne | openlayers_openlayers | train |
d3b7dfa782e65efe18e8019d67522ba10ba7f211 | diff --git a/hazelcast-jet-core/src/test/java/com/hazelcast/jet/core/JetTestSupport.java b/hazelcast-jet-core/src/test/java/com/hazelcast/jet/core/JetTestSupport.java
index <HASH>..<HASH> 100644
--- a/hazelcast-jet-core/src/test/java/com/hazelcast/jet/core/JetTestSupport.java
+++ b/hazelcast-jet-core/src/test/java/com/... | Print collection contents in case of failure (#<I>)
* print collection contents in case of failure
* overwrite assertCollection in JetTestSupport to print the contents of the collections in case of failure
* checkstyle | hazelcast_hazelcast | train |
0106f6cd00ba0ebb68d079dd08d8a17f04bbefee | diff --git a/src/mixins/event-handlers.js b/src/mixins/event-handlers.js
index <HASH>..<HASH> 100644
--- a/src/mixins/event-handlers.js
+++ b/src/mixins/event-handlers.js
@@ -180,12 +180,19 @@ var EventHandlers = {
}
if (touchObject.swipeLength > minSwipe) {
e.preventDefault();
- if (swipeDirectio... | Update slideHandler code to support vertical swipe directions. | akiran_react-slick | train |
f71b179406c5b3f3a94644fbaaaef65b6701aeb2 | diff --git a/edisgo/examples/example.py b/edisgo/examples/example.py
index <HASH>..<HASH> 100644
--- a/edisgo/examples/example.py
+++ b/edisgo/examples/example.py
@@ -17,10 +17,11 @@ logger.setLevel(logging.DEBUG)
if __name__ == '__main__':
grids = []
- for file in os.listdir(os.path.join(sys.path[0], "data"... | Get grids edisgo is run for from user input instead of directory | openego_eDisGo | train |
ac703916700bd089f10a2b6e11faf4bd91020ea8 | 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
@@ -1,3 +1,12 @@
# encoding: utf-8
-require 'jara'
\ No newline at end of file
+require 'jara'
+
+RSpec.configure do |config|
+ config.expect_with :rspec do |c|
+ c.syntax = [:sh... | Configure RSpec 3.x to support the old RSpec syntax | burtcorp_jara | train |
8d6fe9360c3c531209c4b62eb85be20ddd13c5dc | diff --git a/examples/django_channels2/django_channels2/settings.py b/examples/django_channels2/django_channels2/settings.py
index <HASH>..<HASH> 100644
--- a/examples/django_channels2/django_channels2/settings.py
+++ b/examples/django_channels2/django_channels2/settings.py
@@ -21,6 +21,9 @@ TEMPLATES = [
}
]
+... | Use common middleware in channels2 example | graphql-python_graphql-ws | train |
54c282fdbb7ead037c5c7df6e4016fbfaaebf359 | diff --git a/src/Wrapper/FixerWrapper/DocBlockWrapper.php b/src/Wrapper/FixerWrapper/DocBlockWrapper.php
index <HASH>..<HASH> 100644
--- a/src/Wrapper/FixerWrapper/DocBlockWrapper.php
+++ b/src/Wrapper/FixerWrapper/DocBlockWrapper.php
@@ -335,7 +335,24 @@ final class DocBlockWrapper
// remove empty doc
... | DocBlockWrapper - remove extra whitespace after docblock removal | Symplify_TokenRunner | train |
454b76892750e879189d065438e2951408b3096a | diff --git a/test/tests.py b/test/tests.py
index <HASH>..<HASH> 100644
--- a/test/tests.py
+++ b/test/tests.py
@@ -113,7 +113,11 @@ def funcDone():
res = f.result()
done = f.done()
return done
-
+
+def funcWait(timeout):
+ fs = [futures.submit(func4, i) for i in range(1000)]
+ done, not_... | Added a unit test for the wait function | soravux_scoop | train |
0b3b63305e3e401c31f89966267bdc5e74bff329 | diff --git a/lib/active_record/connection_adapters/mysql2_adapter.rb b/lib/active_record/connection_adapters/mysql2_adapter.rb
index <HASH>..<HASH> 100644
--- a/lib/active_record/connection_adapters/mysql2_adapter.rb
+++ b/lib/active_record/connection_adapters/mysql2_adapter.rb
@@ -622,7 +622,8 @@ module ActiveRecord
... | only use wait_timeout if it's a Fixnum | brianmario_mysql2 | train |
576ef97daf15b207e6e15ac62e881e05bc48fb25 | diff --git a/molgenis-dataexplorer/src/main/resources/js/dataexplorer.js b/molgenis-dataexplorer/src/main/resources/js/dataexplorer.js
index <HASH>..<HASH> 100644
--- a/molgenis-dataexplorer/src/main/resources/js/dataexplorer.js
+++ b/molgenis-dataexplorer/src/main/resources/js/dataexplorer.js
@@ -437,6 +437,7 @@ $.whe... | Fix Rsql query being created wrong | molgenis_molgenis | train |
037b64783ff9a818664939ff4428d01bf80faa4c | diff --git a/src/geshi.php b/src/geshi.php
index <HASH>..<HASH> 100644
--- a/src/geshi.php
+++ b/src/geshi.php
@@ -614,6 +614,7 @@ class GeSHi {
*
* @param string The style to use for actual code
* @param boolean Whether to merge the current styles with the new styles
+ * @since 1.0.2
*/
... | fix: Updated doxygen documentation to include full parameter information and since attributes
chg: Made GeSHi:hsc private (as of documentation) | GeSHi_geshi-1.0 | train |
ff309037047a9a5bd13ecb4fa13e722f3c2e3c80 | diff --git a/raiden/storage/sqlite.py b/raiden/storage/sqlite.py
index <HASH>..<HASH> 100644
--- a/raiden/storage/sqlite.py
+++ b/raiden/storage/sqlite.py
@@ -27,6 +27,11 @@ from raiden.utils.typing import (
Union,
)
+from .serialize import SerializationBase
+
+# The latest DB version
+RAIDEN_DB_VERSION = 19
+
... | Add total_withdraw to NettingChannelEndState | raiden-network_raiden | train |
6bd6a3efbeb899cff61712ea4d5162d6d2946773 | diff --git a/test/classes/phing/util/PearPackageScannerTest.php b/test/classes/phing/util/PearPackageScannerTest.php
index <HASH>..<HASH> 100755
--- a/test/classes/phing/util/PearPackageScannerTest.php
+++ b/test/classes/phing/util/PearPackageScannerTest.php
@@ -196,6 +196,10 @@ class PearPackageScannerTest extends Bui... | Do not run test on <I> | phingofficial_phing | train |
f889cadcdf261d01e821f24c588d933a993f605b | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ coverage
dist
.vscode/
yarn-error.log
+.idea/
diff --git a/src/transformers/jasmine-this.js b/src/transformers/jasmine-this.js
index <HASH>..<HASH> 100644
--- a/src/transformers/jasmine-this.js
+++ b/sr... | Avoid error from a function in an array
Avoid TypeError: Cannot read property 'type' of undefined by checking for callee before evaluating callee.type
[<URL> | skovhus_jest-codemods | train |
be8c9f5bb5368bf915c6668061c0c66465b5fb6a | diff --git a/lib/inherited_resources/respond_to.rb b/lib/inherited_resources/respond_to.rb
index <HASH>..<HASH> 100644
--- a/lib/inherited_resources/respond_to.rb
+++ b/lib/inherited_resources/respond_to.rb
@@ -259,9 +259,11 @@ module ActionController #:nodoc:
private
# Define template_exists? for Rails 2... | Better template_exists? handling for Rails <I> (to deal with namespaced controllers). | activeadmin_inherited_resources | train |
ec3a20d2ec31b4a4e8868dec62de8cce5420998b | diff --git a/util.go b/util.go
index <HASH>..<HASH> 100644
--- a/util.go
+++ b/util.go
@@ -95,6 +95,40 @@ func addUniquePeer(peers []net.Addr, peer net.Addr) []net.Addr {
}
}
+// encodePeers is used to serialize a list of peers
+func encodePeers(peers []net.Addr, trans Transport) []byte {
+ // Encode each peer
+ v... | Adding method to encode/decode peer list | hashicorp_raft | train |
b38c6a4b3beb2ab4607d72398328061e762e1106 | diff --git a/lib/quality/version.rb b/lib/quality/version.rb
index <HASH>..<HASH> 100644
--- a/lib/quality/version.rb
+++ b/lib/quality/version.rb
@@ -4,5 +4,5 @@
# reek, flog, flay and rubocop and makes sure your numbers don't get
# any worse over time.
module Quality
- VERSION = '23.0.7'
+ VERSION = '24.0.0'
en... | Release after bug fix and adding shellcheck | apiology_quality | train |
50768556431f03c06df93116d1babd84870f09da | diff --git a/rapidoid-app/src/main/java/org/rapidoid/app/AppClasses.java b/rapidoid-app/src/main/java/org/rapidoid/app/AppClasses.java
index <HASH>..<HASH> 100644
--- a/rapidoid-app/src/main/java/org/rapidoid/app/AppClasses.java
+++ b/rapidoid-app/src/main/java/org/rapidoid/app/AppClasses.java
@@ -21,7 +21,6 @@ package... | Introduced synchronized map factory util. | rapidoid_rapidoid | train |
24293ec2c82f7a492bd6154a22f2df93c1b1a74f | diff --git a/core/src/main/java/hudson/tasks/junit/CaseResult.java b/core/src/main/java/hudson/tasks/junit/CaseResult.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/tasks/junit/CaseResult.java
+++ b/core/src/main/java/hudson/tasks/junit/CaseResult.java
@@ -24,9 +24,11 @@
package hudson.tasks.junit;
... | Added CaseResult#isFailed to complement existing methods isPassed and isSkipped | jenkinsci_jenkins | train |
eb0227843ac82831c67a6b8319e5e4e949dacd53 | diff --git a/lib/instana/instrumentation/net-http.rb b/lib/instana/instrumentation/net-http.rb
index <HASH>..<HASH> 100644
--- a/lib/instana/instrumentation/net-http.rb
+++ b/lib/instana/instrumentation/net-http.rb
@@ -7,7 +7,7 @@ Net::HTTP.class_eval {
return request_without_instana(*args, &block)
end
- ... | Fix span name; better debug and report http payload | instana_ruby-sensor | train |
68d201bc0da0696ee36df9c9dbda8853fdb263c2 | diff --git a/lib/signers/s3.js b/lib/signers/s3.js
index <HASH>..<HASH> 100644
--- a/lib/signers/s3.js
+++ b/lib/signers/s3.js
@@ -12,11 +12,14 @@ AWS.Signers.S3 = inherit(AWS.Signers.RequestSigner, {
subResources: {
'acl': 1,
'accelerate': 1,
+ 'analytics': 1,
'cors': 1,
'lifecycle': 1,
... | Adds additional sub resources to the S3 signer sub resources whitelist | aws_aws-sdk-js | train |
f8fd758c8e2ea6cb93068ae56710b7d4a9ad150e | diff --git a/BAC0/core/functions/TimeSync.py b/BAC0/core/functions/TimeSync.py
index <HASH>..<HASH> 100644
--- a/BAC0/core/functions/TimeSync.py
+++ b/BAC0/core/functions/TimeSync.py
@@ -100,10 +100,9 @@ class TimeSync:
else:
request = TimeSynchronizationRequest(time=_datetime)
-
- if des... | Modification to timesync to allow destination in requests | ChristianTremblay_BAC0 | train |
72add23d06af1562186c740470a61f346c6ec97d | diff --git a/README.rdoc b/README.rdoc
index <HASH>..<HASH> 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -74,6 +74,7 @@ Former <tt>:color</tt>, <tt>:drb</tt>, <tt>:fail_fast</tt> and <tt>:formatter</t
:bundler => false # don't use "bundle exec" to run the RSpec command, default: true
:rvm => ['1.8.7... | add all_after_pass option, defaults to true
with spec, also documented in the readme | guard_guard-rspec | train |
73d847fd4e51a46d7f79d0bc847da91988834ce5 | diff --git a/lib/mixlib/shellout/version.rb b/lib/mixlib/shellout/version.rb
index <HASH>..<HASH> 100644
--- a/lib/mixlib/shellout/version.rb
+++ b/lib/mixlib/shellout/version.rb
@@ -1,5 +1,5 @@
module Mixlib
class ShellOut
- VERSION = "1.2.0"
+ VERSION = "1.3.0"
end
end | Bump the version number for release. | chef_mixlib-shellout | train |
8334c8c3750ee2b0ec815f6798608707bd1ba6c3 | diff --git a/glue/pipeline.py b/glue/pipeline.py
index <HASH>..<HASH> 100644
--- a/glue/pipeline.py
+++ b/glue/pipeline.py
@@ -1358,7 +1358,7 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.0" count="1" in
xml += "--cache " + ','.join(caches) + " "
if not self.is_dax():
- ... | remove the -s local now that pegasus handles this for us | gwastro_pycbc-glue | train |
2a85dd78c46e0d85b33f7fb5e44f2e7e3e7474c6 | diff --git a/master/buildbot/scripts/logwatcher.py b/master/buildbot/scripts/logwatcher.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/scripts/logwatcher.py
+++ b/master/buildbot/scripts/logwatcher.py
@@ -60,13 +60,14 @@ class LogWatcher(LineOnlyReceiver):
TIMEOUT_DELAY = 10.0
delimiter = unicode2bytes(... | logwatcher: Improve testability by injecting reactor | buildbot_buildbot | train |
2449cf41d67c73cf1a8ae2ba97cfc293c846ac6a | diff --git a/lib/Doctrine/Common/EventManager.php b/lib/Doctrine/Common/EventManager.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/Common/EventManager.php
+++ b/lib/Doctrine/Common/EventManager.php
@@ -19,7 +19,7 @@
* <http://www.phpdoctrine.org>.
*/
-#namespace Doctrine::Common;
+#namespace Doctrine\Common;... | General work. Now using spl_object_hash. | doctrine_event-manager | train |
48bbd0b33720440d39d41cebf2c83ce1571cdc08 | diff --git a/lib/puppet/parser/interpreter.rb b/lib/puppet/parser/interpreter.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/parser/interpreter.rb
+++ b/lib/puppet/parser/interpreter.rb
@@ -364,6 +364,10 @@ class Puppet::Parser::Interpreter
unless @nodesources.include?(:code)
@nodesources << :cod... | Further work on #<I>. I forgot to actually connect it to the interpreter internals.
git-svn-id: <URL> | puppetlabs_puppet | train |
edc00eef24c13b59f264e0be860fc8b9fd99bb52 | diff --git a/spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatEmbeddedServletContainer.java b/spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatEmbeddedServletContainer.java
index <HASH>..<HASH> 100644
--- a/spring-boot/src/main/java/org/springframework/boo... | Ensure that Tomcat is completely stopped when its initialization fails
Closes gh-<I> | spring-projects_spring-boot | train |
570660c56935d71e96ad27c7007cd53ccb347c96 | diff --git a/app/components/keyboard-select-picker.js b/app/components/keyboard-select-picker.js
index <HASH>..<HASH> 100644
--- a/app/components/keyboard-select-picker.js
+++ b/app/components/keyboard-select-picker.js
@@ -2,6 +2,17 @@ import Ember from 'ember';
import SelectPicker from './select-picker';
import Keyb... | Prevent keyboard actions for de-focused dropdowns
The ember-keyboard-shortcuts plugin seems to trigger multiple dropdown
actions in the same template so we ignore the ones triggered on
dropdowns that are not `showDropdown`. | sukima_ember-cli-select-picker | train |
6e5f3db06c376e3692123815eee8c41ad955c7a5 | diff --git a/src/Psalm/Internal/Analyzer/Statements/Expression/AssertionFinder.php b/src/Psalm/Internal/Analyzer/Statements/Expression/AssertionFinder.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Internal/Analyzer/Statements/Expression/AssertionFinder.php
+++ b/src/Psalm/Internal/Analyzer/Statements/Expression/Asser... | makes $_SESSION possibly undefined | vimeo_psalm | train |
710e0cc83f5945c442c24469084838a3a6ed40f4 | diff --git a/galpy/df_src/diskdf.py b/galpy/df_src/diskdf.py
index <HASH>..<HASH> 100644
--- a/galpy/df_src/diskdf.py
+++ b/galpy/df_src/diskdf.py
@@ -148,9 +148,9 @@ class diskdf:
kwargs.pop('marginalizeVlos')
return self._call_marginalizevlos(args[0],**kwargs)
... | fix diskdf call bc of new Orbit conventions | jobovy_galpy | train |
56b3e055067b62761a2cd43795997a068d67c750 | diff --git a/src/widgets/views/SellForm.php b/src/widgets/views/SellForm.php
index <HASH>..<HASH> 100644
--- a/src/widgets/views/SellForm.php
+++ b/src/widgets/views/SellForm.php
@@ -1,7 +1,7 @@
<?php
use hipanel\modules\client\widgets\combo\ClientCombo;
-use hipanel\modules\finance\widgets\TariffCombo;
+use hipane... | Used `PlanCombo` in SellForm | hiqdev_hipanel-module-server | train |
0d5b364ca720891b55386820bfe6cfdef323decc | diff --git a/Annis-Service/src/main/java/annis/dao/MatrixExtractor.java b/Annis-Service/src/main/java/annis/dao/MatrixExtractor.java
index <HASH>..<HASH> 100644
--- a/Annis-Service/src/main/java/annis/dao/MatrixExtractor.java
+++ b/Annis-Service/src/main/java/annis/dao/MatrixExtractor.java
@@ -129,13 +129,16 @@ public ... | - set annotation spans for all occurences of a matched node in matrix extractor | korpling_ANNIS | train |
39fe05e81284ed5cd2066901a3e67f1e990d5fc7 | diff --git a/go_expvar/datadog_checks/go_expvar/go_expvar.py b/go_expvar/datadog_checks/go_expvar/go_expvar.py
index <HASH>..<HASH> 100644
--- a/go_expvar/datadog_checks/go_expvar/go_expvar.py
+++ b/go_expvar/datadog_checks/go_expvar/go_expvar.py
@@ -144,18 +144,18 @@ class GoExpvar(AgentCheck):
alias = me... | Fix logging style on go_expvar (#<I>) | DataDog_integrations-core | train |
874f19fc996b552146dc6abc29fafd3bd69e66ac | diff --git a/gwpy/plotter/histogram.py b/gwpy/plotter/histogram.py
index <HASH>..<HASH> 100644
--- a/gwpy/plotter/histogram.py
+++ b/gwpy/plotter/histogram.py
@@ -97,8 +97,11 @@ class HistogramAxes(Axes):
if logbins and (bins is None or isinstance(bins, (float, int))):
bins = bins or 30
... | HistogramAxes: added safety check for corner-case bug | gwpy_gwpy | train |
9ab8a02f13d49d21ac211033c99346f4f4ba6963 | diff --git a/modin/pandas/base.py b/modin/pandas/base.py
index <HASH>..<HASH> 100644
--- a/modin/pandas/base.py
+++ b/modin/pandas/base.py
@@ -2546,7 +2546,10 @@ class BasePandasDataset(object):
A sorted DataFrame
"""
axis = self._get_axis_number(axis)
- if level is not None:
+... | Fix sorting for MultiIndex (#<I>)
* Resolves #<I>
* Correctly creates a new DataFrame based on the QueryCompiler instead of the DataFrame object itself
* Adds conditional checking for MultiIndex when `axis=0` and `axis=1`.
* Add tests | modin-project_modin | train |
82544b7aab2015fa569afc583c52a17ebeb71835 | diff --git a/Str.php b/Str.php
index <HASH>..<HASH> 100755
--- a/Str.php
+++ b/Str.php
@@ -299,6 +299,44 @@ class Str
}
/**
+ * Replace the first occurrence of a given value in the string.
+ *
+ * @param string $search
+ * @param string $replace
+ * @param string $subject
+ * @... | Add Str::replaceFirst, Str::replaceLast, and corresponding helpers | illuminate_support | train |
121aedf3a6a806acc0b44205670769e8a2f10820 | diff --git a/structr-ui/src/main/resources/structr/js/filesystem.js b/structr-ui/src/main/resources/structr/js/filesystem.js
index <HASH>..<HASH> 100644
--- a/structr-ui/src/main/resources/structr/js/filesystem.js
+++ b/structr-ui/src/main/resources/structr/js/filesystem.js
@@ -265,8 +265,8 @@ var _Filesystem = {
})... | changed unloading code for filesystem because it takes an inordinate amount of time | structr_structr | train |
c3e7bd774766683bda3a472a6e521ea9b593dc71 | diff --git a/contribs/gmf/src/directives/layertree.js b/contribs/gmf/src/directives/layertree.js
index <HASH>..<HASH> 100644
--- a/contribs/gmf/src/directives/layertree.js
+++ b/contribs/gmf/src/directives/layertree.js
@@ -429,8 +429,13 @@ gmf.LayertreeController.prototype.getNodeState = function(treeCtrl) {
/**
-... | Set TIME only once, manage treeCtrl without data sources | camptocamp_ngeo | train |
8442edb8938c3d13a3e16f5e1ed7ec2efb5b99ff | diff --git a/spring-cloud-services-spring-connector/src/main/java/io/pivotal/spring/cloud/config/java/ServiceInfoPropertySourceAdapter.java b/spring-cloud-services-spring-connector/src/main/java/io/pivotal/spring/cloud/config/java/ServiceInfoPropertySourceAdapter.java
index <HASH>..<HASH> 100644
--- a/spring-cloud-serv... | Make the property sources higher precedence than env vars
[#<I>] | pivotal-cf_spring-cloud-services-connector | train |
e68bce60b60144bbfb7a661dbf610e85279ff132 | diff --git a/pysatMagVect/_core.py b/pysatMagVect/_core.py
index <HASH>..<HASH> 100644
--- a/pysatMagVect/_core.py
+++ b/pysatMagVect/_core.py
@@ -751,9 +751,7 @@ def calculate_mag_drift_unit_vectors_ecef(latitude, longitude, altitude, datetim
# calculate satellite position in ECEF coordinates
ecef_x, ecef_... | BUG: geocentric -> geodetic in unit vector method. | rstoneback_pysatMagVect | train |
4e8b1ad4fecbcaed42cedaa6489297c4c183cef0 | diff --git a/source/library/com/restfb/types/send/Message.java b/source/library/com/restfb/types/send/Message.java
index <HASH>..<HASH> 100644
--- a/source/library/com/restfb/types/send/Message.java
+++ b/source/library/com/restfb/types/send/Message.java
@@ -51,6 +51,11 @@ public class Message {
this.attachment = ... | Issue #<I> - add multiple QuickReplies at once | restfb_restfb | train |
46991d77d10e6093f62833837df5f7749bb2e370 | diff --git a/tests/TestHelper.php b/tests/TestHelper.php
index <HASH>..<HASH> 100644
--- a/tests/TestHelper.php
+++ b/tests/TestHelper.php
@@ -53,7 +53,7 @@ class TestHelper
$paths = $aimeos->getConfigPaths( 'mysql' );
$paths[] = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'config';
- $conf = new \Aimeos\MW\Co... | Use config adapter from base package | aimeoscom_ai-payments | train |
b9390c65aed04eb07dba38b2441c14d1de7eceb8 | diff --git a/nsq/reader.go b/nsq/reader.go
index <HASH>..<HASH> 100644
--- a/nsq/reader.go
+++ b/nsq/reader.go
@@ -345,7 +345,14 @@ func (q *Reader) queryLookupd() {
producers, _ := data.Get("producers").Array()
for _, producer := range producers {
producerData, _ := producer.(map[string]interface{})
+
ad... | Fix for reader.go, in order to comply with nsq-python and broadcast address
Better handling for NSQ reader if broadcast key does not exist
Simplified eval check for broadcast address => nsq reader
Fix for evaluation along with address assignment | nsqio_nsq | train |
c533734578d30586b96b2e6dd395e47389a62017 | diff --git a/pycbc/inference/sampler.py b/pycbc/inference/sampler.py
index <HASH>..<HASH> 100644
--- a/pycbc/inference/sampler.py
+++ b/pycbc/inference/sampler.py
@@ -118,7 +118,7 @@ class KombineSampler(_BaseSampler):
def burn_in(self, initial_values):
""" Evolve an ensemble until the acceptance rate bec... | Use ASCII character in docstring (#<I>) | gwastro_pycbc | train |
0f1d5bb700d9880fbc6e0900b893d6251b1a34f2 | diff --git a/src/NoCaptcha.php b/src/NoCaptcha.php
index <HASH>..<HASH> 100644
--- a/src/NoCaptcha.php
+++ b/src/NoCaptcha.php
@@ -82,16 +82,20 @@ class NoCaptcha
*/
public function displaySubmit($formIdentifier, $text = 'submit', $attributes = [])
{
- $functionName = 'onSubmit' . str_replace(['-... | Updated displaySubmit to accept custom data-callback | anhskohbo_no-captcha | train |
8d1b6e79022bfd8fc4cd36cbc31b5b449feb27a0 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -713,9 +713,9 @@ Cartero.prototype.compileAssetsRequiredByParcel = function( parcel ) {
if( concatenateThisAssetType ) filesOfThisType = bundles && bundles[ thisAssetType ] ? [ bundles[ thisAssetType ] ] : [];
else files... | Add/Fix Common bundle reference in scripts key in metaData.json. | rotundasoftware_cartero | train |
ce83e80855cbce8bd750276ac38ad86781e25b03 | diff --git a/lib/snoo.rb b/lib/snoo.rb
index <HASH>..<HASH> 100644
--- a/lib/snoo.rb
+++ b/lib/snoo.rb
@@ -1,4 +1,5 @@
require 'httparty'
+require 'nokogiri'
%w{version exceptions utilities account flair links_comments listings moderation pms subreddits users}.each do |local|
require "snoo/#{local}"
diff --git a... | Added modlog scraper. Comes with new dependency, nokogiri | paradox460_snoo | train |
e59255f0d68715713dde7304aac676dbd785775b | diff --git a/lib/dragonfly/active_model_extensions/attachment.rb b/lib/dragonfly/active_model_extensions/attachment.rb
index <HASH>..<HASH> 100644
--- a/lib/dragonfly/active_model_extensions/attachment.rb
+++ b/lib/dragonfly/active_model_extensions/attachment.rb
@@ -57,13 +57,10 @@ module Dragonfly
def save!
... | Added attachment retain and pending for avoiding multiple uploads of same file | markevans_dragonfly | train |
71d471947a5043d9f56b0489fc582a07b81dac62 | diff --git a/pex/locked_resolve.py b/pex/locked_resolve.py
index <HASH>..<HASH> 100644
--- a/pex/locked_resolve.py
+++ b/pex/locked_resolve.py
@@ -20,9 +20,41 @@ else:
from pex.third_party import attr
+class LockStyle(object):
+ class Value(object):
+ def __init__(self, value):
+ # type: (... | LockConfiguration strict: bool -> style: enum. (#<I>)
This makes way for cross-platform as a style to be added later but
a CLI option to be plumbed now. | pantsbuild_pex | train |
a99cc19ce528b36bfa14f3a7814c8f496465abc8 | diff --git a/werkzeug/useragents.py b/werkzeug/useragents.py
index <HASH>..<HASH> 100644
--- a/werkzeug/useragents.py
+++ b/werkzeug/useragents.py
@@ -38,6 +38,7 @@ class UserAgentParser(object):
('ask jeeves', 'ask'),
(r'aol|america\s+online\s+browser', 'aol'),
('opera', 'opera'),
+ (... | Added chrome to the user agent parser. | pallets_werkzeug | train |
313f5bac4a3f804094bcd583e0e5fbc3b5f405bb | diff --git a/airflow/utils/dates.py b/airflow/utils/dates.py
index <HASH>..<HASH> 100644
--- a/airflow/utils/dates.py
+++ b/airflow/utils/dates.py
@@ -225,3 +225,17 @@ def days_ago(n, hour=0, minute=0, second=0, microsecond=0):
second=second,
microsecond=microsecond)
return today - timedelta(days... | [AIRFLOW-<I>] Fix task instance batch clear and set state bugs
Fixes Batch clear in Task Instances view is not working
for task instances in RUNNING state and all batch
operations in Task instances view cannot work when
manually triggered task instances are selected
because they have a different execution date
format.... | apache_airflow | train |
b54af4f18b45a7f9d1968ac57329ef49bcf635a8 | diff --git a/dci/worker/worker.py b/dci/worker/worker.py
index <HASH>..<HASH> 100755
--- a/dci/worker/worker.py
+++ b/dci/worker/worker.py
@@ -50,13 +50,10 @@ def get_email_configuration():
configuration = {
"server": os.getenv("DCI_EMAIL_SERVER", "mail.distributed-ci.io"),
"port": os.getenv("DCI... | Configure SMTP server to login only if needed
login only if account and password are provided.
Change-Id: I<I>f7cde3c1e2bb<I>fe<I>f<I>f3e<I> | redhat-cip_dci-control-server | train |
cba24a87fbf8d8dba5883b0baf753145496f18ed | diff --git a/lib/stateful_enum/active_record_extension.rb b/lib/stateful_enum/active_record_extension.rb
index <HASH>..<HASH> 100644
--- a/lib/stateful_enum/active_record_extension.rb
+++ b/lib/stateful_enum/active_record_extension.rb
@@ -14,8 +14,12 @@ module StatefulEnum
definitions = super
return d... | Rails 7 supports both legacy style and new style
and the legacy style options uses `_` prefixed `prefix` and `suffix` | amatsuda_stateful_enum | train |
38fedfa1b0ff812f3ca7eef5a0a456d0755d1b4b | diff --git a/src/Geocode.php b/src/Geocode.php
index <HASH>..<HASH> 100644
--- a/src/Geocode.php
+++ b/src/Geocode.php
@@ -17,7 +17,7 @@ class Geocode
/**
* API URL through which the address will be obtained.
*/
- private $service_url = "http://maps.googleapis.com/maps/api/geocode/json?sensor=false... | Fetch and populate the address details | hugobots_php-geocode | train |
438ae990e19239ac4e59755b22270eedaface443 | diff --git a/test/full_test/regression.test b/test/full_test/regression.test
index <HASH>..<HASH> 100644
--- a/test/full_test/regression.test
+++ b/test/full_test/regression.test
@@ -11,13 +11,13 @@ do_test(
)
do_test(
- "$RETHINKDB/test/regression/issue_676.py '$RETHINKDB/bench/stress-client/stress -s $HOST... | Fixed some more test glitches. | rethinkdb_rethinkdb | train |
4c6ec41630423f301dd70fc2dd6601b6e6ee688a | diff --git a/src/Persistence.php b/src/Persistence.php
index <HASH>..<HASH> 100644
--- a/src/Persistence.php
+++ b/src/Persistence.php
@@ -48,6 +48,7 @@ class Persistence
switch (strtolower(isset($args['driver']) ?: $driver)) {
case 'mysql':
case 'oci':
+ case 'oci12':
... | oci<I> support | atk4_data | train |
f26c74085fae8ea124b4af75dd81a12dab691681 | diff --git a/packages/composite-checkout/src/components/checkout.js b/packages/composite-checkout/src/components/checkout.js
index <HASH>..<HASH> 100644
--- a/packages/composite-checkout/src/components/checkout.js
+++ b/packages/composite-checkout/src/components/checkout.js
@@ -4,6 +4,7 @@
import React, { useEffect, u... | composite-checkout: Sync url to step number (#<I>)
* Set initial step number when step is in url hash
* Keep the step in the url and subscribe to changes
* Inline getStepNumberFromUrl into useRegisterCheckoutStore
* Set initial hash and dedupe history | Automattic_wp-calypso | train |
3a09e4296a43d6f4bd72672dddc39259ca8a8573 | diff --git a/helpers/index.js b/helpers/index.js
index <HASH>..<HASH> 100644
--- a/helpers/index.js
+++ b/helpers/index.js
@@ -28,15 +28,18 @@ export const formatProductData = (productData) => {
return null;
}
- const { id, name, price, tags = [] } = productData;
+ const { id, name, price, manufacturer, tag... | CON-<I> fix to prevent overriding of SGEvent.__call | shopgate_pwa | train |
28fe3c4e6a97dd37444b3c5a78481bfcdc794b6f | diff --git a/lifelines/tests/test_estimation.py b/lifelines/tests/test_estimation.py
index <HASH>..<HASH> 100644
--- a/lifelines/tests/test_estimation.py
+++ b/lifelines/tests/test_estimation.py
@@ -3003,6 +3003,21 @@ class TestCoxPHFitter:
cph_pieces.fit(rossi, "week", "arrest", strata="paro", formula="age")
... | bump lifelines to <I> and bump formulaic | CamDavidsonPilon_lifelines | train |
5883a778d3f620727b8b9a60966d832e010e6be5 | diff --git a/gridmap/conf.py b/gridmap/conf.py
index <HASH>..<HASH> 100644
--- a/gridmap/conf.py
+++ b/gridmap/conf.py
@@ -75,7 +75,7 @@ from socket import gethostname
try:
import drmaa
DRMAA_PRESENT = True
-except (ImportError, RuntimeError):
+except (ImportError, OSError, RuntimeError):
logger = loggi... | Fix missing exception type in conf.py
Before we were only checking for `ImportError` and `RuntimeError` when importing `drmaa`, but apparently you can get an `OSError` there too. | pygridtools_gridmap | train |
1d7be3fc5dd86a6051ae09fd494b1f62961bc1b5 | diff --git a/drools-compiler/src/test/java/org/drools/compiler/integrationtests/Misc2Test.java b/drools-compiler/src/test/java/org/drools/compiler/integrationtests/Misc2Test.java
index <HASH>..<HASH> 100644
--- a/drools-compiler/src/test/java/org/drools/compiler/integrationtests/Misc2Test.java
+++ b/drools-compiler/src... | [DROOLS-<I>] Constraints index Null values as 0s
(cherry picked from commit 7cd8b2a<I>f<I>d8e<I>a<I>a6cb<I>a<I>) | kiegroup_drools | train |
687c58199301f225cd5e09948208efd0ea5030b3 | diff --git a/js/adyen.encrypt.nodom.js b/js/adyen.encrypt.nodom.js
index <HASH>..<HASH> 100644
--- a/js/adyen.encrypt.nodom.js
+++ b/js/adyen.encrypt.nodom.js
@@ -397,7 +397,7 @@
if (typeof data.expiryMonth !== "undefined") {
validationObject.month = data.expiryMonth;
}
- if (typeo... | Fixed typo, from `expiryMonth` to `expiryYear`
Fixed typo where was check of `typeof expiryMonth !== "undefined"` rather than `typeof data.expiryYear !== "undefined"` | Adyen_adyen-cse-web | train |
2e2c8acc5466c69c8052d13ee14ad92053655b9b | diff --git a/pmml-evaluator/src/main/java/org/jpmml/evaluator/mining/MiningModelEvaluator.java b/pmml-evaluator/src/main/java/org/jpmml/evaluator/mining/MiningModelEvaluator.java
index <HASH>..<HASH> 100644
--- a/pmml-evaluator/src/main/java/org/jpmml/evaluator/mining/MiningModelEvaluator.java
+++ b/pmml-evaluator/src/... | Fixed the handling of missing predictions in mining models. Fixes #<I> | jpmml_jpmml-evaluator | train |
826aadeba730ab068e88ab4ed5d959bde4f3953f | diff --git a/stats/src/main/java/io/airlift/stats/TDigest.java b/stats/src/main/java/io/airlift/stats/TDigest.java
index <HASH>..<HASH> 100644
--- a/stats/src/main/java/io/airlift/stats/TDigest.java
+++ b/stats/src/main/java/io/airlift/stats/TDigest.java
@@ -301,7 +301,9 @@ public class TDigest
while (curr... | Fix wrong array index
Fix potential Array index out of bound exception in
`TDigest.valuesAt()`.
If a searched quantile fell past the last centroid,
and some prevoiusly processed quantile fell in the inner
part of the distribution, the algorithm would try
to compute delta weight between the last centroid and the next,
... | airlift_airlift | train |
ee5cc2cfa870e346c42fdf2b013ec20c37a303d0 | diff --git a/d1_client_cli/src/tests/test_session.py b/d1_client_cli/src/tests/test_session.py
index <HASH>..<HASH> 100755
--- a/d1_client_cli/src/tests/test_session.py
+++ b/d1_client_cli/src/tests/test_session.py
@@ -61,15 +61,15 @@ class TESTCLISession(d1_common.testcasewithurlcompare.TestCaseWithURLCompare):
'... | Updated for changed session variable names. | DataONEorg_d1_python | train |
1056a339a2005bcab435f77252123c84b776744f | diff --git a/src/main/java/com/zaxxer/hikari/pool/HikariPool.java b/src/main/java/com/zaxxer/hikari/pool/HikariPool.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/zaxxer/hikari/pool/HikariPool.java
+++ b/src/main/java/com/zaxxer/hikari/pool/HikariPool.java
@@ -105,7 +105,7 @@ public class HikariPool extends P... | switched order of abort and eviction in loop | brettwooldridge_HikariCP | train |
617360151b915342176a34f3cfa4fb032844df34 | diff --git a/contrib/mergeBenchmarkSets.py b/contrib/mergeBenchmarkSets.py
index <HASH>..<HASH> 100755
--- a/contrib/mergeBenchmarkSets.py
+++ b/contrib/mergeBenchmarkSets.py
@@ -113,14 +113,27 @@ def main(argv=None):
witness = witnessSet.get(run, None)
# copy data from witness
if... | Add score calculation for property 'coverage-error-call' | sosy-lab_benchexec | train |
844b195eb637c3bad516f6e45d31d3dfeb0073f9 | diff --git a/lib/rabl/engine.rb b/lib/rabl/engine.rb
index <HASH>..<HASH> 100644
--- a/lib/rabl/engine.rb
+++ b/lib/rabl/engine.rb
@@ -99,6 +99,13 @@ module Rabl
self.class.new(source, :format => "hash", :root => false).render(@_scope, :object => object, &block)
end
+ # Includes a helper module for RAB... | Adds helper method to include helper modules | nesquena_rabl | train |
0d8573c8d6119598f9c4378c904fd002c2cd3ea2 | diff --git a/lib/xss.js b/lib/xss.js
index <HASH>..<HASH> 100755
--- a/lib/xss.js
+++ b/lib/xss.js
@@ -12,7 +12,7 @@ var never_allowed_str = {
'-moz-binding': '',
'<!--': '<!--',
'-->': '-->',
- '<![CDATA[': '<... | All instances of items in never_allowed_str and never_allowed_regex were not getting replaced in the input string. | chriso_validator.js | train |
eb9678200caed203b864f103fee5e5c163791c5b | diff --git a/vstutils/__init__.py b/vstutils/__init__.py
index <HASH>..<HASH> 100644
--- a/vstutils/__init__.py
+++ b/vstutils/__init__.py
@@ -1,2 +1,2 @@
# pylint: disable=django-not-available
-__version__: str = '4.2.2b6'
+__version__: str = '4.2.2b7'
diff --git a/vstutils/api/fields.py b/vstutils/api/fields.py
inde... | Restore native json module usage in some cases. | vstconsulting_vstutils | train |
7b34f89823d430a7c55d60e16a1729ac472edf42 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -109,7 +109,7 @@ release = package.__version__
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes. To override the custom theme, set this to the
# name of ... | Changing to use astropy html theme rather than rtd default | astropy_astroplan | train |
7329d51f1fce3644e70b02d8f41b743b8e58e644 | diff --git a/src/Blade.php b/src/Blade.php
index <HASH>..<HASH> 100644
--- a/src/Blade.php
+++ b/src/Blade.php
@@ -404,7 +404,6 @@ class Blade extends Service
public function compileAcfloop($expression)
{
$expression = $this->normalizeExpression($expression);
- $initLoop = '$loop = new ' . Cou... | @acfloop nested in @acfrow fix for $loop variable | CupOfTea696_WordPress-Lib | train |
2805c0de67bf55c63deb8d351034b5b31b35a752 | diff --git a/src/krl/index.js b/src/krl/index.js
index <HASH>..<HASH> 100644
--- a/src/krl/index.js
+++ b/src/krl/index.js
@@ -1,5 +1,5 @@
module.exports = {
- lib: require('./lib'),
+ stdlib: require('./stdlib'),
toJS: require('./toJS'),
fromJS: require('./fromJS'),
Null: require('./KRLNull'),
diff --git a... | kr/lib -> krl/stdlib | Picolab_pico-engine | train |
1728e0e9f740ddc6956d8ede5a3b3e91ca5a3969 | diff --git a/c7n/resources/ebs.py b/c7n/resources/ebs.py
index <HASH>..<HASH> 100644
--- a/c7n/resources/ebs.py
+++ b/c7n/resources/ebs.py
@@ -502,11 +502,6 @@ class CopySnapshot(BaseAction):
return self
def process(self, resources):
- if self.data['target_region'] == self.manager.config.region:
... | aws - ebs snapshot - action allow copies within the same region (#<I>) | cloud-custodian_cloud-custodian | train |
93556064658f08b37be136f053de95a375d9c83a | diff --git a/lib/veewee/provider/core/helper/ssh.rb b/lib/veewee/provider/core/helper/ssh.rb
index <HASH>..<HASH> 100644
--- a/lib/veewee/provider/core/helper/ssh.rb
+++ b/lib/veewee/provider/core/helper/ssh.rb
@@ -82,7 +82,7 @@ module Veewee
Net::SSH.start(ip, options[:user],
... | Fix ssh auth for FreeBSD box builds
Setting `:auth_modes` to `['password','publickey']` does not work for
FreeBSD. Adding `keyboard-interactive` to the list allows FreeBSD boxes
to be built. | jedi4ever_veewee | train |
27959c247bc1a4ef67409ddade7ea9588255921b | diff --git a/src/main/java/com/nesscomputing/db/postgres/embedded/EmbeddedPostgreSQL.java b/src/main/java/com/nesscomputing/db/postgres/embedded/EmbeddedPostgreSQL.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/nesscomputing/db/postgres/embedded/EmbeddedPostgreSQL.java
+++ b/src/main/java/com/nesscomputing/db... | Add lock for tarball unpacking.
This allows surefire to run multiple tests in parallel even if the tarball must be
unpacked first. | NessComputing_components-ness-pg | train |
e0402a821307208f23e539b0fadb174d3775d8a7 | diff --git a/internal/http_api/api_request.go b/internal/http_api/api_request.go
index <HASH>..<HASH> 100644
--- a/internal/http_api/api_request.go
+++ b/internal/http_api/api_request.go
@@ -6,6 +6,9 @@ import (
"io/ioutil"
"net"
"net/http"
+ "net/url"
+ "strconv"
+ "strings"
"time"
)
@@ -92,6 +95,8 @@ func ... | internal/http_api: when encountering a <I>, try the HTTPS port provided | nsqio_nsq | train |
da31129372638db4ada98b6dbcda58e02b46ed4b | diff --git a/lib/specinfra/backend/cmd.rb b/lib/specinfra/backend/cmd.rb
index <HASH>..<HASH> 100644
--- a/lib/specinfra/backend/cmd.rb
+++ b/lib/specinfra/backend/cmd.rb
@@ -6,12 +6,19 @@ module Specinfra
include PowerShell::ScriptHelper
def os_info
- { :family => 'windows', :release => nil, :ar... | Add support for Cygwin ruby (where system() shells to bash instead of cmd.exe) | mizzy_specinfra | train |
b2dbd4a724f05bab0a520585afde338cb43b46cb | diff --git a/pymongo/__init__.py b/pymongo/__init__.py
index <HASH>..<HASH> 100644
--- a/pymongo/__init__.py
+++ b/pymongo/__init__.py
@@ -32,7 +32,7 @@ SLOW_ONLY = 1
ALL = 2
"""Profile all operations."""
-version = "0.13"
+version = "0.14"
"""Current version of PyMongo."""
Connection = PyMongo_Connection | BUMP <I> long support, collection rename, snapshot support, other minor fixes/changes | mongodb_mongo-python-driver | train |
01e24606c7a15316c027bcfd133a3edd3008a18c | diff --git a/example/src/App.js b/example/src/App.js
index <HASH>..<HASH> 100644
--- a/example/src/App.js
+++ b/example/src/App.js
@@ -2,6 +2,15 @@ import React from 'react'
import { EditorHook } from 'react-revise'
import { StatusPanel } from 'react-revise'
+import styled from 'styled-components'
+
+const MyButton... | Add save button and mess around with styles | DanPen_react-revise | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.