hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
02c2017d99ebffb1c7de2841dea2a723aa30f3d5 | diff --git a/src/Illuminate/Http/Request.php b/src/Illuminate/Http/Request.php
index <HASH>..<HASH> 100755
--- a/src/Illuminate/Http/Request.php
+++ b/src/Illuminate/Http/Request.php
@@ -598,12 +598,14 @@ class Request extends SymfonyRequest implements ArrayAccess
return true;
}
+ $types ... | Micro optimisation to prevent multiple casts | laravel_framework | train |
2eacb4a148ebdf6e5cde1fd3f7fe285fe96d35e7 | diff --git a/src/BinaryStream.php b/src/BinaryStream.php
index <HASH>..<HASH> 100644
--- a/src/BinaryStream.php
+++ b/src/BinaryStream.php
@@ -512,8 +512,18 @@ class BinaryStream {
$bytes = $sizeInBits / 8;
if ($sizeInBits == 8)
$data = chr($integer);
+ // handle 24... | Support for writing <I>-bit integers | wapmorgan_BinaryStream | train |
1df1c27f25461f17a14edeb0d60b2460a2fa12d3 | diff --git a/hypercorn/__main__.py b/hypercorn/__main__.py
index <HASH>..<HASH> 100644
--- a/hypercorn/__main__.py
+++ b/hypercorn/__main__.py
@@ -188,12 +188,6 @@ def main(sys_args: Optional[List[str]] = None) -> None:
if len(args.insecure_binds) > 0:
config.insecure_bind = args.insecure_binds
- for... | Log the binding, rather than print
This also ensures that the correct binding is logged (say if the
configured port is 0 and hence a random port is chosen). | pgjones_hypercorn | train |
c2f631a64225fb0155f690f89a9c4c0299aa723f | diff --git a/src/scene.js b/src/scene.js
index <HASH>..<HASH> 100644
--- a/src/scene.js
+++ b/src/scene.js
@@ -302,6 +302,47 @@ exports.Scene = function(containerIn, rendererIn) {
return objectsArray;
}
+ this.getBoundingBoxOfZincObjects = objectsArray => {
+ let boundingBox = undefined;
+ for (let i =... | Add function to get the window coordinates. | alan-wu_ZincJS | train |
459e8c12a9c828a0b3faff59df69c2e1f083309c | diff --git a/hdfs_datanode/tests/common.py b/hdfs_datanode/tests/common.py
index <HASH>..<HASH> 100644
--- a/hdfs_datanode/tests/common.py
+++ b/hdfs_datanode/tests/common.py
@@ -33,7 +33,7 @@ EXPECTED_METRICS = [
'hdfs.datanode.num_blocks_cached',
'hdfs.datanode.num_failed_volumes',
'hdfs.datanode.num_b... | Remove expected metric from tests (#<I>)
* Comment out flakey test
* Remove assert_all_metrics call
* Remove other assert_all_metrics | DataDog_integrations-core | train |
a8b66e50caf229509b975b62eb7a7e51ca638d85 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ setup(
maintainer="Jeff Ortel",
maintainer_email="[email protected]",
packages=find_packages(),
- url="https://fedorahosted.org/suds"
+ url="https://fedorahosted.org/suds",
install_requ... | fix comma missing after url | suds-community_suds | train |
bd947cd1b43b4e9d63df800edd17219a2b9bdc0b | diff --git a/spec/integration/switch_user_spec.rb b/spec/integration/switch_user_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/integration/switch_user_spec.rb
+++ b/spec/integration/switch_user_spec.rb
@@ -58,11 +58,11 @@ RSpec.describe "Using SwitchUser", type: :request do
it "can switch back to a different us... | Auto corrected by following Style/HashSyntax | flyerhzm_switch_user | train |
73b19fc5bcbc90f5187985dc4b3033a3b3b3f82a | diff --git a/simuvex/procedures/cgc/receive.py b/simuvex/procedures/cgc/receive.py
index <HASH>..<HASH> 100644
--- a/simuvex/procedures/cgc/receive.py
+++ b/simuvex/procedures/cgc/receive.py
@@ -31,6 +31,7 @@ class receive(simuvex.SimProcedure):
if self.state.satisfiable(extra_constraints=[count != 0]):
... | constrain the size correctly in recieve | angr_angr | train |
ee12d933f1951b16117ba463889a7acf379e0e27 | diff --git a/rusha.sweet.js b/rusha.sweet.js
index <HASH>..<HASH> 100644
--- a/rusha.sweet.js
+++ b/rusha.sweet.js
@@ -188,7 +188,7 @@
case 'array': return convBuf.bind(data);
case 'buffer': return convBuf.bind(data);
case 'arraybuffer': return convBuf.bind(new Uint8Array(data));
- cas... | Support typed arrays with custom parents
Typed arrays (Uint8Array, etc.) can point to a slice of a larger
backing ArrayBuffer.
Currently, Rusha is broken because it just uses the whole backing
ArrayBuffer disregarding the slice that the typed array points to.
This PR resolves this issue. | srijs_rusha | train |
bfb4deb73cf85f616d68d8bffde67981e90d4009 | diff --git a/indra/tests/test_html_assembler.py b/indra/tests/test_html_assembler.py
index <HASH>..<HASH> 100644
--- a/indra/tests/test_html_assembler.py
+++ b/indra/tests/test_html_assembler.py
@@ -181,23 +181,30 @@ def test_default_colors():
# that adds a source without also running
# regenerate_default_sou... | Add testing of color equivalence | sorgerlab_indra | train |
1c2f906650a50c63fd4574c4deb56b743a3fa4bd | diff --git a/.travis.yml b/.travis.yml
index <HASH>..<HASH> 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,16 +10,10 @@ install:
- composer install --no-interaction
script:
- - vendor/bin/phpunit -c phpunit.xml
+ - ./vendor/bin/phpunit
# Configure email notifications
notifications:
email:
on_succ... | Mac OSX is case insensitive, fix autoloading. | drutiny_drutiny | train |
71bb1dfdcd030b2518e5b6a10c531f6fcba65e9f | diff --git a/cobra_test.go b/cobra_test.go
index <HASH>..<HASH> 100644
--- a/cobra_test.go
+++ b/cobra_test.go
@@ -119,6 +119,16 @@ func initializeWithRootCmd() *Command {
return cmdRootWithRun
}
+func checkOutputContains(t *testing.T, c *Command, check string) {
+ buf := new(bytes.Buffer)
+ c.SetOutput(buf)
+ c.E... | Cobra behavior is now more consistent. Invalid flags cause Usage to be printed. | spf13_cobra | train |
8361476bd59b9807ac8e306e74f702bd1cefc2f9 | diff --git a/procstats/proc.go b/procstats/proc.go
index <HASH>..<HASH> 100644
--- a/procstats/proc.go
+++ b/procstats/proc.go
@@ -31,6 +31,10 @@ type procCPU struct {
percent float64 `metric:"usage.percent" type:"gauge"`
typ string `tag:"type"` // system
}
+ total struct {
+ time time.Dura... | report total CPU usage (#<I>) | segmentio_stats | train |
60ede9eb7fcbf8f2f33f6834f1c417e90cccd542 | diff --git a/endpoints/ship/tests/integration_test.js b/endpoints/ship/tests/integration_test.js
index <HASH>..<HASH> 100644
--- a/endpoints/ship/tests/integration_test.js
+++ b/endpoints/ship/tests/integration_test.js
@@ -1,22 +1,23 @@
import request from 'request'
import helpers from '../../../lib/test_helpers.js'
... | Adding tests for /ship endpoint | apis-is_apis | train |
43c6c7ddb475a99e09ddfe700cc2bc285e550705 | diff --git a/cmd/juju/bootstrap.go b/cmd/juju/bootstrap.go
index <HASH>..<HASH> 100644
--- a/cmd/juju/bootstrap.go
+++ b/cmd/juju/bootstrap.go
@@ -33,29 +33,5 @@ func (c *BootstrapCommand) Run(_ *cmd.Context) error {
if err != nil {
return err
}
- // TODO(rog) use (juju/environs).Bootstrap
- return environ.Boots... | cmd/juju: revert bootstrap to trunk version | juju_juju | train |
58b0e7d23d31ac74ea5334b92068feee9c85eb20 | diff --git a/client/src/main/java/io/pravega/client/stream/impl/PendingEvent.java b/client/src/main/java/io/pravega/client/stream/impl/PendingEvent.java
index <HASH>..<HASH> 100644
--- a/client/src/main/java/io/pravega/client/stream/impl/PendingEvent.java
+++ b/client/src/main/java/io/pravega/client/stream/impl/Pending... | Issue <I>: Correct maximum event size (#<I>)
* Allow max event size payload = 1MB | pravega_pravega | train |
eeb6529bf3fa1883c691f5c4024e5b4278fb9c38 | diff --git a/src/lib/metadata-yaml.js b/src/lib/metadata-yaml.js
index <HASH>..<HASH> 100644
--- a/src/lib/metadata-yaml.js
+++ b/src/lib/metadata-yaml.js
@@ -111,7 +111,13 @@ function applyObjectMeta(value, meta) {
meta.children[childMeta.key] = { templates: [] };
meta.countOfChildren++;
... | Fixed Issue with Header Partial. Closes #<I> | lynx-json_lynx-docs | train |
c3eeae282944dd4e86b75ff45c82581cd1c4de54 | diff --git a/groupstore_GEN_.go b/groupstore_GEN_.go
index <HASH>..<HASH> 100644
--- a/groupstore_GEN_.go
+++ b/groupstore_GEN_.go
@@ -82,6 +82,8 @@ type defaultGroupStore struct {
lookupGroupItems int32
reads int32
readErrors int32
+ readGroups ... | Added ReadGroup, though I normally wouldn't rec...
Added ReadGroup, though I normally wouldn't recommend using this default
implementation as it will allocate memory for all the values that could
be done more efficiently depending on your use case. | gholt_store | train |
4bfe8e2f79c19ce0a840d1810b8fbc483941d37d | diff --git a/src/Common/Select.php b/src/Common/Select.php
index <HASH>..<HASH> 100644
--- a/src/Common/Select.php
+++ b/src/Common/Select.php
@@ -273,7 +273,7 @@ class Select extends AbstractQuery implements SelectInterface, SubselectInterfac
*
* @param string $alias The column to remove
*
- * @r... | change return type from boolean to bool | auraphp_Aura.SqlQuery | train |
186a1f12095260208ea15d2829a5ac90aaa3ca80 | diff --git a/util/parser/expression_test.go b/util/parser/expression_test.go
index <HASH>..<HASH> 100644
--- a/util/parser/expression_test.go
+++ b/util/parser/expression_test.go
@@ -14,10 +14,19 @@
package parser
import (
+ "testing"
+
. "github.com/pingcap/check"
"github.com/pingcap/tidb/ast"
)
+func TestT... | util: improve the test coverage (#<I>) | pingcap_tidb | train |
1e5d906d2e0c9cd96d3a22325a8621aaec3f3800 | diff --git a/src/search/FindBar.js b/src/search/FindBar.js
index <HASH>..<HASH> 100644
--- a/src/search/FindBar.js
+++ b/src/search/FindBar.js
@@ -408,6 +408,10 @@ define(function (require, exports, module) {
this.focusQuery();
};
+ /**
+ * @private
+ * Shows the search History in dropdown.
+... | Added JSDocs and updated tests | adobe_brackets | train |
95e57928f89ba5cce16a7a7dee1cde4981e57a8c | diff --git a/lib/app.js b/lib/app.js
index <HASH>..<HASH> 100644
--- a/lib/app.js
+++ b/lib/app.js
@@ -29,6 +29,7 @@ var dataform = require("./dataForm");
var https = require('https');
var log = require('./log');
var moment = require('moment-timezone');
+var url = require('url');
var __theApp = null;
@@ -410,6 ... | expose the current and parent named routes to views and let them have nice labels | onecommons_base | train |
568b5a8da09b4d15667f0ad5fbd75a99b89d3440 | diff --git a/lib/app.js b/lib/app.js
index <HASH>..<HASH> 100644
--- a/lib/app.js
+++ b/lib/app.js
@@ -94,7 +94,7 @@ Object.getOwnPropertyNames(flattened).forEach(function (key) {
});
// in live, we run behind a proxy - so this will give us our IPs again: http://expressjs.com/guide.html#proxies
-if (process.env.NOD... | Detect SSL and alter URLs to match. | jsbin_jsbin | train |
e7e32d13a3eef694e3795f3af1a224d526961e4a | diff --git a/tests/php/Security/MemberTest.php b/tests/php/Security/MemberTest.php
index <HASH>..<HASH> 100644
--- a/tests/php/Security/MemberTest.php
+++ b/tests/php/Security/MemberTest.php
@@ -21,6 +21,7 @@ use SilverStripe\Security\Member_Validator;
use SilverStripe\Security\MemberAuthenticator\MemberAuthenticator;... | FIX Add namespace and encryptor to tests that expect blowfish to be available | silverstripe_silverstripe-framework | train |
c01875bd5d9104bdd703d086f64e8e632ee28212 | diff --git a/spec/ey/deploy_spec.rb b/spec/ey/deploy_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/ey/deploy_spec.rb
+++ b/spec/ey/deploy_spec.rb
@@ -197,9 +197,17 @@ describe "ey deploy" do
context "specifying the application" do
before(:all) do
api_scenario "one app, one environment"
+ end
+
+ b... | Add ability to run integration test in a before(:all).
This lets you run e.g. ey "deploy" in a before(:all) and then assert
different things about the results in different examples.
Used this to save one run of bundled_ey in spec/ey/deploy_spec.rb. | engineyard_engineyard | train |
2ffbf43c963d05e113e7508149ecb0d63e74a6f1 | diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index <HASH>..<HASH> 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -3,6 +3,11 @@ Changelog
#########
----
+0.17
+----
+* ``write_raster_window`` now returns a ``rasterio.MemoryFile()`` if path is ``"memoryfile"``
+
+----
0.16
----
* added ``TileDirectory`` as additi... | enhance write_raster_window() with rasterio.MemoryFile() | ungarj_mapchete | train |
d01162293034e2335f7d8dbd25e853d7e5135703 | diff --git a/src/test/java/io/github/bonigarcia/wdm/test/PhantomJsBetaTest.java b/src/test/java/io/github/bonigarcia/wdm/test/PhantomJsBetaTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/io/github/bonigarcia/wdm/test/PhantomJsBetaTest.java
+++ b/src/test/java/io/github/bonigarcia/wdm/test/PhantomJsBetaTest.ja... | Activate PhantomJS with beta version | bonigarcia_webdrivermanager | train |
d49cf57339ef82626674299f9e058d00dade468c | diff --git a/lib/origen/sub_blocks.rb b/lib/origen/sub_blocks.rb
index <HASH>..<HASH> 100644
--- a/lib/origen/sub_blocks.rb
+++ b/lib/origen/sub_blocks.rb
@@ -329,14 +329,32 @@ module Origen
# creates an array referenced by method called 'my_ip_group'
# which contains the sub_blocks 'ip0', 'ip1', 'ip2', 'ip3'... | Updated to support custom container class for sub_block_group method. | Origen-SDK_origen | train |
061921afaec8884843dbb7cd5cc9dd34202a1f63 | diff --git a/src/State.php b/src/State.php
index <HASH>..<HASH> 100644
--- a/src/State.php
+++ b/src/State.php
@@ -6,6 +6,7 @@ use Exception;
use ReflectionMethod;
use ReflectionFunction;
use Psr\Http\Message\RequestInterface;
+use Psr\Http\Message\ResponseInterface;
use Zend\Diactoros\Response\HtmlResponse;
use Z... | fix some shizzle for v4 | monolyth-php_reroute | train |
0091669fbd856049fd32e24037eb39c97180876a | diff --git a/gmail/mailbox.py b/gmail/mailbox.py
index <HASH>..<HASH> 100644
--- a/gmail/mailbox.py
+++ b/gmail/mailbox.py
@@ -9,6 +9,7 @@ class Mailbox():
# TODO: utf-7 encode mailbox name
self.external_name = encode_utf7(name)
self.gmail = gmail
+ self.date_format = "%d-%b-%Y"
... | Define date format in class initialization | charlierguo_gmail | train |
c697670e9bc3681571dfcdff38fe6b157afb99af | diff --git a/plugins/io.sarl.eclipse/src/io/sarl/eclipse/wizards/SARLProjectNewWizard.java b/plugins/io.sarl.eclipse/src/io/sarl/eclipse/wizards/SARLProjectNewWizard.java
index <HASH>..<HASH> 100644
--- a/plugins/io.sarl.eclipse/src/io/sarl/eclipse/wizards/SARLProjectNewWizard.java
+++ b/plugins/io.sarl.eclipse/src/io/... | Change the default page image in the "new SARL project" wizard. | sarl_sarl | train |
2ae8ba750f65f8719b0f96d912aff1f8b2ece045 | diff --git a/untwisted/iossl.py b/untwisted/iossl.py
index <HASH>..<HASH> 100644
--- a/untwisted/iossl.py
+++ b/untwisted/iossl.py
@@ -1,4 +1,3 @@
-from untwisted.wrappers import xmap, zmap, spawn
from untwisted.network import SSL
from untwisted.event import CLOSE, SSL_CERTIFICATE_ERR, \
SSL_CONNECT_ERR, SSL_CONNECT... | Removing usage of xmap from iossl.py module. | untwisted_untwisted | train |
5817cfd8bba0c42d98d1480c6334e11a2af1ad8b | diff --git a/src/ServiceFactory/SerializationServiceFactory.php b/src/ServiceFactory/SerializationServiceFactory.php
index <HASH>..<HASH> 100644
--- a/src/ServiceFactory/SerializationServiceFactory.php
+++ b/src/ServiceFactory/SerializationServiceFactory.php
@@ -4,11 +4,11 @@ declare(strict_types=1);
namespace Chubb... | Chubbyphp\Container\ContainerInterface => Psr\Container\ContainerInterface | chubbyphp_chubbyphp-serialization | train |
16a23a184e8b091392c0b6001a025bee8323ec8e | diff --git a/activesupport/lib/active_support/testing/garbage_collection.rb b/activesupport/lib/active_support/testing/garbage_collection.rb
index <HASH>..<HASH> 100644
--- a/activesupport/lib/active_support/testing/garbage_collection.rb
+++ b/activesupport/lib/active_support/testing/garbage_collection.rb
@@ -3,6 +3,9 ... | rein in GC during tests by making them run (at most) once per second
this can provide a significant performance boost during testing, by
preventing the GC from running too frequently. | rails_rails | train |
1fbd54e3eb4cb596f31b5656b2e4b83f812aa653 | diff --git a/src/crosstab.js b/src/crosstab.js
index <HASH>..<HASH> 100644
--- a/src/crosstab.js
+++ b/src/crosstab.js
@@ -5,10 +5,13 @@ var crosstab = (function () {
}
// --- Utility ---
- var MESSAGE_KEY = 'crosstab.MESSAGE_KEY';
- var TABS_KEY = 'crosstab.TABS_KEY';
- var MASTER_TAB = 'MASTER_TA... | Move key strings into util.keys so they can be used by other libraries. | tejacques_crosstab | train |
cb18875d46a1bb6a1f63dbf682237a61db899f1d | diff --git a/serviceBus/src/main/java/com/microsoft/windowsazure/services/servicebus/implementation/SasFilter.java b/serviceBus/src/main/java/com/microsoft/windowsazure/services/servicebus/implementation/SasFilter.java
index <HASH>..<HASH> 100644
--- a/serviceBus/src/main/java/com/microsoft/windowsazure/services/servic... | Implemented supplemental auth behavior in SAS filter. | Azure_azure-sdk-for-java | train |
9abb31003c0a98c1465e3069f0cef11f3cc054ed | diff --git a/trashcli/trash.py b/trashcli/trash.py
index <HASH>..<HASH> 100644
--- a/trashcli/trash.py
+++ b/trashcli/trash.py
@@ -887,18 +887,8 @@ class ListCmd:
self.err = self.output.err
self.contents_of = file_reader.contents_of
self.version = version
- class ListableTr... | Refactor: extracted ListableTrashCan | andreafrancia_trash-cli | train |
d0c1a8a803abc7b1c806b7683224315e074d298a | diff --git a/lib/rack/mock_session.rb b/lib/rack/mock_session.rb
index <HASH>..<HASH> 100644
--- a/lib/rack/mock_session.rb
+++ b/lib/rack/mock_session.rb
@@ -26,7 +26,7 @@ module Rack
def request(uri, env)
env['HTTP_COOKIE'] ||= cookie_jar.for(uri)
@last_request = Rack::Request.new(env)
- statu... | Add compatibility with rack <I> (#<I>)
Add support for Rack <I> by fixing a breaking change that affected users of rack-test:
- Remove to_ary from Response (in <I>) | rack-test_rack-test | train |
71ed45f95101610feff02a078d74c8fe4736e108 | diff --git a/src/Model/Integration.php b/src/Model/Integration.php
index <HASH>..<HASH> 100644
--- a/src/Model/Integration.php
+++ b/src/Model/Integration.php
@@ -101,9 +101,8 @@ class Integration extends ApiResourceBase
{
$response = $exception->getResponse();
if ($response && $response->getStat... | Fix undefined method $response->json() in integration validation | platformsh_platformsh-client-php | train |
69afd8a2800ff69d7002949d44222d7ba52d415c | diff --git a/src/view/items/Interpolator.js b/src/view/items/Interpolator.js
index <HASH>..<HASH> 100755
--- a/src/view/items/Interpolator.js
+++ b/src/view/items/Interpolator.js
@@ -25,7 +25,7 @@ export default class Interpolator extends Mustache {
render(target, occupants) {
if (inAttributes()) return;
- ... | only update interpolator text nodes if the value has actually changed | ractivejs_ractive | train |
b6e0b90a8bdbdffc9f5466691497bafdf453553f | diff --git a/TODO b/TODO
index <HASH>..<HASH> 100644
--- a/TODO
+++ b/TODO
@@ -1,13 +1,3 @@
-Implement __hash__ method for BigFloats
----------------------------------------
- This is a little tricky:
- - if the BigFloat is an integer, its hash should match that of the integer
- - if the BigFloat is exactly repr... | Implement __hash__ for BigFloats | mdickinson_bigfloat | train |
87a4321547d338425fa9e29c896f540cef2ae208 | diff --git a/tests/unit/data/observatory/enrichment/test_polygon_enrichment.py b/tests/unit/data/observatory/enrichment/test_polygon_enrichment.py
index <HASH>..<HASH> 100644
--- a/tests/unit/data/observatory/enrichment/test_polygon_enrichment.py
+++ b/tests/unit/data/observatory/enrichment/test_polygon_enrichment.py
@... | rm needless enrichment_id and geom_column props from tests | CartoDB_cartoframes | train |
957fe6d63bf288079e0211384ecf76a7a23ec456 | diff --git a/spec/error_reporters/rollbar_spec.rb b/spec/error_reporters/rollbar_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/error_reporters/rollbar_spec.rb
+++ b/spec/error_reporters/rollbar_spec.rb
@@ -41,6 +41,10 @@ describe Pliny::ErrorReporters::Rollbar do
context "given an empty rack_env" do
let(:r... | Document that rack_env must be a Hash | interagent_pliny | train |
7a618f69897b5702116484f08dad9687d326101f | diff --git a/js/browser/keystrokeManager.js b/js/browser/keystrokeManager.js
index <HASH>..<HASH> 100644
--- a/js/browser/keystrokeManager.js
+++ b/js/browser/keystrokeManager.js
@@ -6,16 +6,18 @@ exports = Singleton(function(){
this.init = function() {
events.add(window, 'keypress', bind(this, '_onKeyPress'));... | Maintain an internal stack of keystroke handlers - when blurring the element with current control, return to the previous element with keystroke control | marcuswestin_fin | train |
fab55f1f7ee733a896ea2d95d69cb747dcea4949 | diff --git a/tests/phpunit/unit/Logger/ChangeLogTest.php b/tests/phpunit/unit/Logger/ChangeLogTest.php
index <HASH>..<HASH> 100644
--- a/tests/phpunit/unit/Logger/ChangeLogTest.php
+++ b/tests/phpunit/unit/Logger/ChangeLogTest.php
@@ -1,7 +1,6 @@
<?php
namespace Bolt\Tests\Logger;
-use Bolt\Logger\ChangeLog;
use B... | [Tests] Reset the database for change logging tests | bolt_bolt | train |
9f52a7b0fe74276a1cff28ac1ca62596fc0c9c8e | diff --git a/core/core.js b/core/core.js
index <HASH>..<HASH> 100644
--- a/core/core.js
+++ b/core/core.js
@@ -442,6 +442,25 @@ exports._setup = function() {
return (new Color(spec)).get()
}
+ /** @constructor */
+ var DelayedAction = function(action) {
+ this.action = function() {
+ this.timeout = undefined
... | added qml.core.DelayedAction | pureqml_qmlcore | train |
fd4827b25feb11a7273edadfd231a37f02fd87cb | diff --git a/openquake/nrmllib/record.py b/openquake/nrmllib/record.py
index <HASH>..<HASH> 100644
--- a/openquake/nrmllib/record.py
+++ b/openquake/nrmllib/record.py
@@ -178,26 +178,30 @@ class Record(collections.Sequence):
def init(self):
"""To override for post-initialization operations"""
- def i... | Added a .cast method at table level | gem_oq-engine | train |
e3bd53230f2f3ebaa308953f6f5935704254e1c9 | diff --git a/modules/cms/classes/MediaLibrary.php b/modules/cms/classes/MediaLibrary.php
index <HASH>..<HASH> 100644
--- a/modules/cms/classes/MediaLibrary.php
+++ b/modules/cms/classes/MediaLibrary.php
@@ -64,8 +64,6 @@ class MediaLibrary
if (!preg_match("/(\/\/|http|https)/", $this->storagePath)) {
... | Revert breaking from #<I> | octobercms_october | train |
5337c403d0a00dd68335228839eff5247531b848 | diff --git a/src/pointerEvents.js b/src/pointerEvents.js
index <HASH>..<HASH> 100644
--- a/src/pointerEvents.js
+++ b/src/pointerEvents.js
@@ -1,5 +1,4 @@
const scope = require('./scope');
-const InteractEvent = require('./InteractEvent');
const Interaction = require('./Interaction');
const utils = require('./utils'... | pointerEvents: remove dependence on InteractEvent | taye_interact.js | train |
8f059d674c5e4f8809f2e3d3ea587b76f217be30 | diff --git a/packages/server-socket/src/command-processor.js b/packages/server-socket/src/command-processor.js
index <HASH>..<HASH> 100644
--- a/packages/server-socket/src/command-processor.js
+++ b/packages/server-socket/src/command-processor.js
@@ -14,7 +14,7 @@ function processCommand({ Event, User, logger }) {
... | Make todos with children copyable | compose-us_todastic | train |
1aa9457e4ac999d7a7174bb3d7195c4c3a4463d6 | diff --git a/stellar_sdk/client/aiohttp_client.py b/stellar_sdk/client/aiohttp_client.py
index <HASH>..<HASH> 100644
--- a/stellar_sdk/client/aiohttp_client.py
+++ b/stellar_sdk/client/aiohttp_client.py
@@ -211,7 +211,7 @@ class AiohttpClient(BaseAsyncClient):
raise StreamClientError(
... | fix: make `AiohttpClient` compatible with Python <I> and <I> (#<I>)
`asyncio.exceptions.TimeoutError` available in Python <I> and above | StellarCN_py-stellar-base | train |
b01f114add00eeed694cc74e90fa8e482aadc67c | diff --git a/lib/EarthIT/CMIPREST/MSSQLStorage.php b/lib/EarthIT/CMIPREST/MSSQLStorage.php
index <HASH>..<HASH> 100644
--- a/lib/EarthIT/CMIPREST/MSSQLStorage.php
+++ b/lib/EarthIT/CMIPREST/MSSQLStorage.php
@@ -216,7 +216,7 @@ class EarthIT_CMIPREST_MSSQLStorage implements EarthIT_CMIPREST_Storage
$orderByComponents... | Fix MSSQLStorage to always generate an ORDER BY clause. | EarthlingInteractive_PHPCMIPREST | train |
88799e2ed671e36276c6febebf04e14fd30ebacb | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -18,7 +18,7 @@ module.exports = {
*
* @param {String} folder
* @chainable
- */
+ */
load: function(folder) {
/**
* Looking in '<project_root>/test/fixtures' by default
@@ -26,7 +26,8 @@ module.e... | Changed for loop to not use for in.
see <URL> | bredikhin_barrels | train |
8f38410d67887ce98d57f89b1409b381f2ddce50 | diff --git a/animanager/argparse.py b/animanager/argparse.py
index <HASH>..<HASH> 100644
--- a/animanager/argparse.py
+++ b/animanager/argparse.py
@@ -70,4 +70,10 @@ def compile_sql_query(args: Iterable[str]) -> str:
return '%{}%'.format('%'.join(args))
class CommandError(Exception):
- """Error parsing comma... | Improve CommandError docstring | darkfeline_animanager | train |
61545f4b8100a822271a9ac9672fdded5f1b1958 | diff --git a/spec/twitter/tweet_spec.rb b/spec/twitter/tweet_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/twitter/tweet_spec.rb
+++ b/spec/twitter/tweet_spec.rb
@@ -310,6 +310,23 @@ describe Twitter::Tweet do
Twitter::Tweet.new(:id => 28669546014).urls
expect($stderr.string).to match(/To get urls, you m... | failing spec for "strange urls" | sferik_twitter | train |
bc6eb5ab37587bfa23331c1c87f8bb3b9375b029 | diff --git a/taskw/test/test_datas.py b/taskw/test/test_datas.py
index <HASH>..<HASH> 100644
--- a/taskw/test/test_datas.py
+++ b/taskw/test/test_datas.py
@@ -407,6 +407,24 @@ class TestDBShellout(_BaseTestDB):
eq_(len(tasks), 1)
eq_(tasks[0]['id'], 3)
+ def test_filtering_qmark(self):
+ t... | Add failing test case for `?` escaping | ralphbean_taskw | train |
b19c8614bc78fef2b48148e4ec4ea46274320416 | diff --git a/sysconfig.py b/sysconfig.py
index <HASH>..<HASH> 100644
--- a/sysconfig.py
+++ b/sysconfig.py
@@ -93,14 +93,11 @@ def get_python_inc(plat_specific=0, prefix=None):
# the build directory may not be the source directory, we
# must use "srcdir" from the makefile to find the "Include"... | bpo-<I>: update distutils.sysconfig for venv's created from Python (#<I>)
compiled out-of-tree (builddir != srcdir). (see also bpo-<I>) | pypa_setuptools | train |
663afcea93734fdbdf15b7fda5a3d59f29c29906 | diff --git a/fixture/src/org/immutables/generate/silly/SillyOrdinal.java b/fixture/src/org/immutables/generate/silly/SillyOrdinal.java
index <HASH>..<HASH> 100644
--- a/fixture/src/org/immutables/generate/silly/SillyOrdinal.java
+++ b/fixture/src/org/immutables/generate/silly/SillyOrdinal.java
@@ -19,7 +19,7 @@ import ... | fixed passing of custom domain for ordinal value | immutables_immutables | train |
dd79c9e86cfa65d165e7d2b6c2bd950bba1c2525 | diff --git a/lib/dependor/injectable.rb b/lib/dependor/injectable.rb
index <HASH>..<HASH> 100644
--- a/lib/dependor/injectable.rb
+++ b/lib/dependor/injectable.rb
@@ -7,6 +7,7 @@ module Dependor
end
module InstanceMethods
+
def inject!
Dependor.injector.inject(self)
end
@@ -14,6 +15,7... | Existing methods are not overriden by declaring dependencies. | psyho_dependor | train |
0e565894d2e3cff41b76fded739845384f857480 | diff --git a/Repository/ToolRepository.php b/Repository/ToolRepository.php
index <HASH>..<HASH> 100644
--- a/Repository/ToolRepository.php
+++ b/Repository/ToolRepository.php
@@ -32,7 +32,7 @@ class ToolRepository extends EntityRepository
$isAdmin = false;
foreach ($roles as $role) {
- if... | [CoreBundle] Fixed repository method | claroline_Distribution | train |
2889665855ce22ea8980b290a83d305587e32501 | diff --git a/src/widgets/InlineMenuWidget.js b/src/widgets/InlineMenuWidget.js
index <HASH>..<HASH> 100644
--- a/src/widgets/InlineMenuWidget.js
+++ b/src/widgets/InlineMenuWidget.js
@@ -69,7 +69,14 @@ OO.ui.InlineMenuWidget.prototype.getMenu = function () {
* @param {OO.ui.MenuItemWidget} item Selected menu item
*... | Fixes bug where InlineMenuWidget would "steal" DOM labels on selection
To reproduce, create an InlineMenuWidget where the labels are jQuery
objects. Selecting one of the options would incorrectly detach the
label from the list of options to populate the selected label.
Change-Id: I7db<I>d<I>a1cc<I>f<I>cfa4eeadb7b<I>e... | wikimedia_oojs-ui | train |
b315e2a517867f464b4adb6c589e51ecee64c2bf | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -4,7 +4,7 @@ var each = require('turf-meta').coordEach;
* Calculates the extent of all input features and returns a bounding box.
*
* @module turf/extent
- * @param {GeoJSON-Object} input any valid GeoJSON Object
+ * @pa... | Fix old-fashioned typedef link | turf-junkyard_turf-extent | train |
0a5ee539a507544d9cbf8c4ada175b05d604f47b | diff --git a/lib/sonos.js b/lib/sonos.js
index <HASH>..<HASH> 100644
--- a/lib/sonos.js
+++ b/lib/sonos.js
@@ -49,7 +49,7 @@ var withinEnvelope = function(body) {
/**
* Encodes characters not allowed within html/xml tags
- * @param {String} body
+ * @param {String} str
* @return {String}
*/
var htmlEntities... | fixed lint warnings and rearranged code for better readability | bencevans_node-sonos | train |
0b2f76153764aaefa9da5cbb4a6b23d3c180d749 | diff --git a/lib/guard/notifier.rb b/lib/guard/notifier.rb
index <HASH>..<HASH> 100644
--- a/lib/guard/notifier.rb
+++ b/lib/guard/notifier.rb
@@ -174,7 +174,7 @@ module Guard
notifier = _get_notifier_module(notifier[:name]).new(notifier[:options])
begin
- notifier.notify(message, opts)
+ ... | Fix options changed after pass it to any notifiers | guard_guard | train |
5af5d19cd8385e61e9bf2b580a5bf400904d9a0d | diff --git a/controller/src/main/java/org/jboss/as/controller/ReadResourceNameOperationStepHandler.java b/controller/src/main/java/org/jboss/as/controller/ReadResourceNameOperationStepHandler.java
index <HASH>..<HASH> 100644
--- a/controller/src/main/java/org/jboss/as/controller/ReadResourceNameOperationStepHandler.jav... | [WFCORE-<I>] Check that the resource exists before returning the resource name. | wildfly_wildfly-core | train |
3e32452952594cab803d9b635f56a89dab2ab53a | diff --git a/svtyper/singlesample.py b/svtyper/singlesample.py
index <HASH>..<HASH> 100644
--- a/svtyper/singlesample.py
+++ b/svtyper/singlesample.py
@@ -172,8 +172,8 @@ def retrieve_reads_from_db(bam, variant_id, regions, max_reads):
if countA > max_reads or countB > max_reads:
over_threshold = True
... | + correct the SKIPPING formatting
- there was an off by one issue. i accidentally removed the read count
formats stubs | hall-lab_svtyper | train |
bd4b73dc9787a62960872f987948fd04ebff3ffa | diff --git a/modules/custom/openy_map/js/map.js b/modules/custom/openy_map/js/map.js
index <HASH>..<HASH> 100644
--- a/modules/custom/openy_map/js/map.js
+++ b/modules/custom/openy_map/js/map.js
@@ -569,7 +569,7 @@
var tag_filter_html = '<label class="btn btn-default" for="tag_' + tag + '">';
... | [OS-<I>] Graphics after location types are not labeled. (hide icons at all for screen readers) | ymcatwincities_openy | train |
6a8df96e1424ad7f9bd5a65bda20081285107724 | diff --git a/src/Bkwld/EloquentUploads/ServiceProvider.php b/src/Bkwld/EloquentUploads/ServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/Bkwld/EloquentUploads/ServiceProvider.php
+++ b/src/Bkwld/EloquentUploads/ServiceProvider.php
@@ -35,19 +35,21 @@ class ServiceProvider extends LaravelServiceProvider {
*/
... | Breaking the destination disk in to it's own IoC type | BKWLD_upchuck | train |
d200dbc8e456d2e778455240819f9bb0ef0f40db | diff --git a/src/toil/worker.py b/src/toil/worker.py
index <HASH>..<HASH> 100644
--- a/src/toil/worker.py
+++ b/src/toil/worker.py
@@ -147,7 +147,7 @@ def workerScript(jobStore, config, jobName, jobStoreID, redirectOutputToLogFile=
except OSError:
pass
# Exit without doing any... | Send an argument to exit, as it is required | DataBiosphere_toil | train |
d5150bf007298d6646cbefe9229be84a284b0ce9 | diff --git a/django_countries/tests/settings.py b/django_countries/tests/settings.py
index <HASH>..<HASH> 100644
--- a/django_countries/tests/settings.py
+++ b/django_countries/tests/settings.py
@@ -10,3 +10,8 @@ DATABASES = {
}
STATIC_URL = '/static-assets/'
+
+MIDDLEWARE_CLASSES = (
+ 'django.middleware.common... | Test that a ModelForm can be created correctly
Refs #<I> | SmileyChris_django-countries | train |
b3f3a20928d2e34e7dba07639db5a2ec1b0b3eac | diff --git a/src/Psalm/Checker/Statements/Expression/AssignmentChecker.php b/src/Psalm/Checker/Statements/Expression/AssignmentChecker.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Checker/Statements/Expression/AssignmentChecker.php
+++ b/src/Psalm/Checker/Statements/Expression/AssignmentChecker.php
@@ -435,7 +435,7 ... | Correctly evaluate $this and self in property/return types | vimeo_psalm | train |
eb83976c58cb4936896a62d31634e824a5c83107 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -23,7 +23,7 @@ function _getResourceUrl(resourceName, id=null) {
}
module.exports = {
- get (resourceName, options={}) {
+ get: function(resourceName, options={}) {
let resourceUrl = _getResourceUrl(resourceName);
... | ES6 to ES5
Changed library to be es5 compatible. | jthoms1_jsonapi2simple | train |
43696d91fcb2f6c94ee7872e01b09870c964b820 | diff --git a/upgrades/5.9/scripts/AfterUpgrade.php b/upgrades/5.9/scripts/AfterUpgrade.php
index <HASH>..<HASH> 100644
--- a/upgrades/5.9/scripts/AfterUpgrade.php
+++ b/upgrades/5.9/scripts/AfterUpgrade.php
@@ -35,6 +35,8 @@ class AfterUpgrade
protected function fixCollation($container)
{
+ $ignotedE... | Modification upgrade script <I> | espocrm_espocrm | train |
ba9e4a00584afbdf6f4c55151528a4d3c37c667e | diff --git a/rules/predicates.py b/rules/predicates.py
index <HASH>..<HASH> 100644
--- a/rules/predicates.py
+++ b/rules/predicates.py
@@ -151,7 +151,7 @@ class Predicate(object):
args = tuple(arg for arg in (obj, target) if arg is not NO_VALUE)
_context.stack.append(Context(args))
try:
- ... | Better handling of skipped predicates
This pins down the semantics of skipping predicates by letting the result propagate up to the initial invocation (that is ``Predicate.test()``) | dfunckt_django-rules | train |
bd228de628066162a4054f1ed4b7682b23c42505 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md") as readme_file:
setup(
name = 'aguaclara',
- version = '0.3.2',
+ version = '0.3.3',
description = (
'An open-source Python package for designing and performing r... | update version to <I> (#<I>)
* Update Pipfile.lock for urllib and pillow vulnerabilities
* Update setup.py
* switch to <I> -- <I> was taken | AguaClara_aguaclara | train |
2c23ff3153df33f11115dcad81c463bbc5d79140 | diff --git a/src/Keboola/StorageApi/Client.php b/src/Keboola/StorageApi/Client.php
index <HASH>..<HASH> 100644
--- a/src/Keboola/StorageApi/Client.php
+++ b/src/Keboola/StorageApi/Client.php
@@ -1007,7 +1007,7 @@ class Client
$body = $response->json();
if ($response->getStatusCode() == 503) {
- throw new M... | Maintenance retry after header bugfix | keboola_storage-api-php-client | train |
255303d43d4520f815c671489ecc0a1aebf5eccd | diff --git a/src/Container/Definition/AbstractDefinition.php b/src/Container/Definition/AbstractDefinition.php
index <HASH>..<HASH> 100644
--- a/src/Container/Definition/AbstractDefinition.php
+++ b/src/Container/Definition/AbstractDefinition.php
@@ -145,9 +145,16 @@ abstract class AbstractDefinition implements Definit... | Do not autoload classes in the definitions which are always autoloaded | woohoolabs_zen | train |
9a023d70272e9d0f1e3b7994f2ec8bd309ba43cd | diff --git a/spec/kerplutz/options_spec.rb b/spec/kerplutz/options_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/kerplutz/options_spec.rb
+++ b/spec/kerplutz/options_spec.rb
@@ -54,6 +54,7 @@ module Kerplutz
it "configures the parser" do
subject.configure(parser, args)
expect { parser.parse("-... | Assert required flag property is nil after failure | msassak_kerplutz | train |
8a0f1c6b700339cb52656d304d88d334e4319607 | diff --git a/kaminari-core/test/models/active_record/paginable_without_count_test.rb b/kaminari-core/test/models/active_record/paginable_without_count_test.rb
index <HASH>..<HASH> 100644
--- a/kaminari-core/test/models/active_record/paginable_without_count_test.rb
+++ b/kaminari-core/test/models/active_record/paginable... | No need to explicitly load here
Relations without_count should work regardless of loaded? or !loaded? | kaminari_kaminari | train |
18669bec8bf496daf958ca8c37433dd3d21fe8d6 | diff --git a/src/Command/Environment/EnvironmentBranchCommand.php b/src/Command/Environment/EnvironmentBranchCommand.php
index <HASH>..<HASH> 100644
--- a/src/Command/Environment/EnvironmentBranchCommand.php
+++ b/src/Command/Environment/EnvironmentBranchCommand.php
@@ -67,6 +67,11 @@ class EnvironmentBranchCommand ext... | Do not prompt for checkout in branch command if it won't be possible | platformsh_platformsh-cli | train |
f87ab13b9df5f80e0c148650c59a6e9d4c26b7d0 | diff --git a/lib/kafka/protocol/decoder.rb b/lib/kafka/protocol/decoder.rb
index <HASH>..<HASH> 100644
--- a/lib/kafka/protocol/decoder.rb
+++ b/lib/kafka/protocol/decoder.rb
@@ -1,11 +1,11 @@
module Kafka
module Protocol
- VARINT_MASK = 0b10000000
-
# A decoder wraps an IO object, making it easy to read sp... | Support signed integer for varint decoder | zendesk_ruby-kafka | train |
e70291d130c88359af553f775e3bd3b41c7b5386 | diff --git a/internal/services/cosmos/validate/cosmos.go b/internal/services/cosmos/validate/cosmos.go
index <HASH>..<HASH> 100644
--- a/internal/services/cosmos/validate/cosmos.go
+++ b/internal/services/cosmos/validate/cosmos.go
@@ -50,9 +50,9 @@ func CosmosMaxThroughput(i interface{}, k string) (warnings []string, e... | fix: 🐛 Adjust minimum limit of max_throughput validation (#<I>)
Addresses issue #<I>
(fixed #<I>) | terraform-providers_terraform-provider-azurerm | train |
4147815785a42bb5336bf839613eb841641251e1 | diff --git a/es2015/transaction/ReadOnlyTransaction.js b/es2015/transaction/ReadOnlyTransaction.js
index <HASH>..<HASH> 100644
--- a/es2015/transaction/ReadOnlyTransaction.js
+++ b/es2015/transaction/ReadOnlyTransaction.js
@@ -82,7 +82,9 @@ export default class ReadOnlyTransaction {
this.completionPromise = new Pr... | the error used to reject to transaction's completion promise now bears the "AbortError" name to make to "successful rejection error" easier to distinguish from other errors | jurca_indexed-db.es6 | train |
377980029134b75714ba9a1d448416bd2f3d45a3 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -31,7 +31,7 @@ setup(
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
-# "Framework :: Django :: 3.0",
+ "Framework :: Django :: 3.0",
... | Re-added trove classifier for Django <I>. | django-crispy-forms_django-crispy-forms | train |
503154a553236ae5768fd8f129d98e5f8294394a | diff --git a/src/java/org/archive/wayback/query/UIQueryResults.java b/src/java/org/archive/wayback/query/UIQueryResults.java
index <HASH>..<HASH> 100644
--- a/src/java/org/archive/wayback/query/UIQueryResults.java
+++ b/src/java/org/archive/wayback/query/UIQueryResults.java
@@ -334,4 +334,11 @@ public class UIQueryResu... | FEATURE: pass-thru getLocalized() method to expose the localized key lookup functionality in the WaybackRequest to jsp's.
git-svn-id: <URL> | iipc_openwayback | train |
9fb005b17a515e1a4547f19d4bdcc498eec81aad | diff --git a/lib/sidekiq_unique_jobs/orphans/manager.rb b/lib/sidekiq_unique_jobs/orphans/manager.rb
index <HASH>..<HASH> 100644
--- a/lib/sidekiq_unique_jobs/orphans/manager.rb
+++ b/lib/sidekiq_unique_jobs/orphans/manager.rb
@@ -10,6 +10,8 @@ module SidekiqUniqueJobs
module Manager
module_function
+ ... | Expire reaper when not checking in (#<I>)
Close #<I> | mhenrixon_sidekiq-unique-jobs | train |
5573ca642a66a04ca5422a381d868ff0c082e39d | diff --git a/core/resource/ResourceServiceProvider.php b/core/resource/ResourceServiceProvider.php
index <HASH>..<HASH> 100644
--- a/core/resource/ResourceServiceProvider.php
+++ b/core/resource/ResourceServiceProvider.php
@@ -40,6 +40,7 @@ class ResourceServiceProvider implements ContainerServiceProviderInterface
... | refactor: make repositories public | oat-sa_generis | train |
153b1303a0fd4cc2aed7ffbd056a02b222b0491d | diff --git a/tests/cases/data/source/mongo_db/ExporterTest.php b/tests/cases/data/source/mongo_db/ExporterTest.php
index <HASH>..<HASH> 100644
--- a/tests/cases/data/source/mongo_db/ExporterTest.php
+++ b/tests/cases/data/source/mongo_db/ExporterTest.php
@@ -310,6 +310,21 @@ class ExporterTest extends \lithium\test\Uni... | Adding tests for an issue regarding schema's defined as an array. The issue is that if a parents
name is reused as a child, it's also defined as an array type. | UnionOfRAD_lithium | train |
81ef5927d5b79c7d6ae7a7f3b0262a09f7f05281 | diff --git a/crane/container.go b/crane/container.go
index <HASH>..<HASH> 100644
--- a/crane/container.go
+++ b/crane/container.go
@@ -242,7 +242,10 @@ func (r *RunParameters) Cmd() []string {
func (c *container) Id() string {
if len(c.id) == 0 {
- c.id = inspectString(c.Name(), "{{.Id}}")
+ // `docker inspect` ... | make sure we inspect containers, not images | michaelsauter_crane | train |
a6d61cb5d66ede0370cde88e0af842e67f4cfef4 | diff --git a/lxd/db/network_acls.go b/lxd/db/network_acls.go
index <HASH>..<HASH> 100644
--- a/lxd/db/network_acls.go
+++ b/lxd/db/network_acls.go
@@ -266,3 +266,11 @@ func (c *Cluster) RenameNetworkACL(id int64, newName string) error {
return err
})
}
+
+// DeleteNetworkACL deletes the Network ACL.
+func (c *Clu... | lxd/db/network/acls: Adds DeleteNetworkACL function | lxc_lxd | train |
10a70b21baac01cdc2c613904d7bae715d3c4358 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -114,8 +114,6 @@ def run_apidoc(_):
# such.
def skip_loader_hooks(app, what, name, obj, skip, options):
if name == 'get_node' or name == 'get_single_node':
- app.info('running hook: {} {} {}'.form... | Remove debug output in doc build | yatiml_yatiml | train |
d0e319eb740051c685b711374815679483136cae | diff --git a/app/helpers/sufia/sufia_helper_behavior.rb b/app/helpers/sufia/sufia_helper_behavior.rb
index <HASH>..<HASH> 100644
--- a/app/helpers/sufia/sufia_helper_behavior.rb
+++ b/app/helpers/sufia/sufia_helper_behavior.rb
@@ -220,7 +220,7 @@ module Sufia
else
"default.png"
... | Fixed open alt tag that I incorrectly set previously to address accessibility | samvera_hyrax | train |
ab50ec1215042ceb21804efd6ab30fa56214d312 | diff --git a/user/editadvanced_form.php b/user/editadvanced_form.php
index <HASH>..<HASH> 100644
--- a/user/editadvanced_form.php
+++ b/user/editadvanced_form.php
@@ -35,14 +35,11 @@ class user_editadvanced_form extends moodleform {
$mform->setAdvanced('auth');
$mform->addElement('passwordunmask', '... | MDL-<I> fix user profil help icons, merged from <I> | moodle_moodle | train |
30d634f59bcfb0f0609c2206eca58328994e6100 | diff --git a/src/DynamoDbClientInterface.php b/src/DynamoDbClientInterface.php
index <HASH>..<HASH> 100644
--- a/src/DynamoDbClientInterface.php
+++ b/src/DynamoDbClientInterface.php
@@ -4,6 +4,9 @@ namespace BaoPham\DynamoDb;
interface DynamoDbClientInterface
{
+ /**
+ * @param string @name
+ */
fu... | Reformatted for psr-2; Refactor the DynamoDbModel and create getModelKey(); Add support for multiple client configurations; | baopham_laravel-dynamodb | train |
7d5d7a523897f904a4cf1e9bc5ec4a0c9699e082 | diff --git a/lib/rufus/edo/cabinet/abstract.rb b/lib/rufus/edo/cabinet/abstract.rb
index <HASH>..<HASH> 100644
--- a/lib/rufus/edo/cabinet/abstract.rb
+++ b/lib/rufus/edo/cabinet/abstract.rb
@@ -109,8 +109,6 @@ module Rufus::Edo
# * :apow size of record alignment by power of 2 (defaults to 4)
# * :fpow... | no way to setmutex via Hirabayashi-san's ruby code. Commented out :mutex mention. | jmettraux_rufus-tokyo | train |
dfe1e237d3756c77923c05fcf77904d811b51f73 | diff --git a/prov-model/src/main/java/org/openprovenance/prov/model/ProvFactory.java b/prov-model/src/main/java/org/openprovenance/prov/model/ProvFactory.java
index <HASH>..<HASH> 100644
--- a/prov-model/src/main/java/org/openprovenance/prov/model/ProvFactory.java
+++ b/prov-model/src/main/java/org/openprovenance/prov/... | add prov:value to the list of attributes to return (fixing omission) | lucmoreau_ProvToolbox | train |
5b8fc3c492aa96e6622b2b523553c0aebf3d9af2 | diff --git a/lib/protobuf/version.rb b/lib/protobuf/version.rb
index <HASH>..<HASH> 100644
--- a/lib/protobuf/version.rb
+++ b/lib/protobuf/version.rb
@@ -1,4 +1,4 @@
module Protobuf
VERSION = '2.7.11'
- PROTOC_VERSION = '2.4.1'
+ PROTOC_VERSION = '2.5.0'
end | Set PROTOC_VERSION to <I> | ruby-protobuf_protobuf | train |
bff80c0abe4ddef6f610c0c6d6ebd663992841d9 | diff --git a/Gemfile b/Gemfile
index <HASH>..<HASH> 100644
--- a/Gemfile
+++ b/Gemfile
@@ -28,7 +28,7 @@ end
# installed on Travis CI
#
group :test do
- gem 'rack-test', '~> 0.5.4'
- gem 'test-unit', '~> 2.3'
- gem 'shoulda', '~> 2.11.3'
+ gem 'rack-test'
+ gem 'test-unit'
+ gem 'shoulda'
end
diff --git a/t... | Add a complex example to represent #<I> use-case | tobmatth_rack-ssl-enforcer | train |
21551c2378b1f56f358d72beb814befb38ff0b25 | diff --git a/jax/version.py b/jax/version.py
index <HASH>..<HASH> 100644
--- a/jax/version.py
+++ b/jax/version.py
@@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-__version__ = "0.1.57"
+__version__ = "0.1.58" | Bump JAX version to <I>. | tensorflow_probability | train |
5aaab806968fe49304e4d0d6396de1231a4890d7 | diff --git a/lib/core.js b/lib/core.js
index <HASH>..<HASH> 100644
--- a/lib/core.js
+++ b/lib/core.js
@@ -19,7 +19,9 @@ module.exports = function(opts, cb) {
return raja;
};
-function Raja(opts) { this.opts = opts || {}; }
+function Raja(opts) {
+ this.opts = opts || {};
+}
Raja.prototype.init = function(cb) {... | Output X-Raja header when a resource is tracked | kapouer_raja | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.