hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
63858e38f892889286bfbb725f95995d433dc6cc | diff --git a/lib/commands/new.js b/lib/commands/new.js
index <HASH>..<HASH> 100644
--- a/lib/commands/new.js
+++ b/lib/commands/new.js
@@ -5,18 +5,20 @@ var Config = require('../utils/config');
var Command = require('../models/command');
var Project = require('../models/project');
var linkEnv = require('../tasks/li... | name project based on app name, closes #<I> | isleofcode_ember-cordova | train |
b992ed4262423c57b02a36447655c8ae36998def | diff --git a/build/export-exchanges.js b/build/export-exchanges.js
index <HASH>..<HASH> 100644
--- a/build/export-exchanges.js
+++ b/build/export-exchanges.js
@@ -328,7 +328,7 @@ function exportKeywordsToPackageJson (exchanges) {
}
packageJSON.keywords = [...keywords]
- fs.writeFileSync ('./package.json'... | exportKeywordsToPackageJson newline at the end of file | ccxt_ccxt | train |
f7bcb5a9c21f08cd58a725060e92a1c4b280588f | diff --git a/jax/lax.py b/jax/lax.py
index <HASH>..<HASH> 100644
--- a/jax/lax.py
+++ b/jax/lax.py
@@ -2537,8 +2537,8 @@ def _gather_dimensions_proto(indices_shape, dimension_numbers):
proto.offset_dims.extend(dimension_numbers.offset_dims)
proto.collapsed_slice_dims.extend(dimension_numbers.collapsed_slice_dims)... | Fix xla Shape vs shape tuple confusion and verify indexing test passes. | tensorflow_probability | train |
ac1fe24704e5907e9a362c00317e25eb6cb95ffc | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -35,7 +35,7 @@ const POSSIBLE_TYPOS = new Map([
]);
const PROXY_RELATED_ENVS = new Set(['https_proxy', 'http_proxy', 'proxy', 'no_proxy']);
const REDIRECT_OPTIONS = new Set(['error', 'follow', 'manual']);
-const MINIMUM_REQ... | upgrade the minimum required version of npm CLI | shinnn_wise-fetch | train |
908eee899ddeed3e0520d3c61b5fc67161532a20 | diff --git a/bingmaps/location/location_api.py b/bingmaps/location/location_api.py
index <HASH>..<HASH> 100644
--- a/bingmaps/location/location_api.py
+++ b/bingmaps/location/location_api.py
@@ -1,6 +1,7 @@
import json
import os
from collections import namedtuple
+import xmltodict
class LocationApi(object):
@@ ... | Added a method to parse xml data to json and now the API service can retrieve the values from xml data | bharadwajyarlagadda_bingmaps | train |
0351a731b970532c2ef2227b08b8c732f992bba2 | diff --git a/modules/citrus-http/src/main/java/com/consol/citrus/http/servlet/CachingHttpServletRequestWrapper.java b/modules/citrus-http/src/main/java/com/consol/citrus/http/servlet/CachingHttpServletRequestWrapper.java
index <HASH>..<HASH> 100644
--- a/modules/citrus-http/src/main/java/com/consol/citrus/http/servlet/... | Use 'contains' instead of 'equals' in order to process compound Content-Type headers (e.g. application/x-www-form-urlencoded;utf-8) | citrusframework_citrus | train |
bf2e220176a0e3c65b772786554cba2f48b0d653 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -14,13 +14,15 @@ var keyCodes = {
LEFT: 37,
UP: 38,
RIGHT: 39,
- DOWN: 40
+ DOWN: 40,
+ SPACE: 32,
+ SHIFT: 16
};
function VirtualScroll(options) {
- bindAll(this, '_onWheel', ... | added space and shift+space scroll capabilities | ayamflow_virtual-scroll | train |
6b15befbb5c77c53be3bff11193f03169846347d | diff --git a/js/assessor.js b/js/assessor.js
index <HASH>..<HASH> 100644
--- a/js/assessor.js
+++ b/js/assessor.js
@@ -79,7 +79,7 @@ Assessor.prototype.hasMarker = function( assessment ) {
return false;
}
- return isFunction( this._options.marker ) && assessment.hasOwnProperty( "getMarks" );
+ return isFunction(... | Add support for getMarks function. | Yoast_YoastSEO.js | train |
81d50c7c241e292e15b05eae76d33302d0d3a798 | diff --git a/.nuget/create_nuget.py b/.nuget/create_nuget.py
index <HASH>..<HASH> 100644
--- a/.nuget/create_nuget.py
+++ b/.nuget/create_nuget.py
@@ -1,5 +1,6 @@
# coding: utf-8
"""Script for generating files with NuGet package metadata."""
+import datetime
import os
import sys
@@ -37,7 +38,7 @@ if __name__ == "... | autoincrement year in NuGet description (#<I>) | Microsoft_LightGBM | train |
def9b9bbc1e7e4694ab4bf4f4e1093752c93ed21 | diff --git a/lib/rufus/scheduler/cronline.rb b/lib/rufus/scheduler/cronline.rb
index <HASH>..<HASH> 100644
--- a/lib/rufus/scheduler/cronline.rb
+++ b/lib/rufus/scheduler/cronline.rb
@@ -377,7 +377,7 @@ class Rufus::Scheduler
return %w[ L ] if item == 'L'
- item = '*' + item if item[0] == '/'
+ ite... | fix issue with String#[] and <I> | jmettraux_rufus-scheduler | train |
ad1fa5da9821472dbf47098667c2b7160ff2628f | diff --git a/patch.go b/patch.go
index <HASH>..<HASH> 100644
--- a/patch.go
+++ b/patch.go
@@ -565,7 +565,7 @@ func (p Patch) move(doc *container, op operation) error {
return fmt.Errorf("jsonpatch move operation does not apply: doc is missing destination path: %s", path)
}
- return con.set(key, val)
+ return co... | According to the RFC, the move operation should be functionally
identical to a remove followed by an add. | evanphx_json-patch | train |
ef2eeb96ba401a67d19f594b13ccbbd8fc837522 | diff --git a/extensions/lib/shoebotit/ide_utils.py b/extensions/lib/shoebotit/ide_utils.py
index <HASH>..<HASH> 100644
--- a/extensions/lib/shoebotit/ide_utils.py
+++ b/extensions/lib/shoebotit/ide_utils.py
@@ -92,7 +92,7 @@ class ShoebotProcess(object):
"""
def __init__(self, source, use_socketserver, show_v... | Fix double title in gedit. | shoebot_shoebot | train |
e4bbbdb08d84bbebf6f4b73a1d109d93260941c4 | diff --git a/src/InvisibleReCaptchaServiceProvider.php b/src/InvisibleReCaptchaServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/InvisibleReCaptchaServiceProvider.php
+++ b/src/InvisibleReCaptchaServiceProvider.php
@@ -37,7 +37,7 @@ class InvisibleReCaptchaServiceProvider extends ServiceProvider
);... | Changed how Blade directives are registered to prevent conflicts | albertcht_invisible-recaptcha | train |
55ea9ef5da4fde09ec3b52a8e5fdbe0fc8a3ffdc | diff --git a/refcycle/i_directed_graph.py b/refcycle/i_directed_graph.py
index <HASH>..<HASH> 100644
--- a/refcycle/i_directed_graph.py
+++ b/refcycle/i_directed_graph.py
@@ -100,7 +100,7 @@ class IDirectedGraph(object):
def descendants(self, start, generations=None):
"""
Return the subgraph of a... | Clarify docstrings for ancestors, descendants. | mdickinson_refcycle | train |
eb505dccd6956be0dc78f8fe1675906c41c7b753 | diff --git a/qtpy/py3compat.py b/qtpy/py3compat.py
index <HASH>..<HASH> 100644
--- a/qtpy/py3compat.py
+++ b/qtpy/py3compat.py
@@ -46,6 +46,7 @@ NUMERIC_TYPES = tuple(list(INT_TYPES) + [float, complex])
if PY2:
# Python 2
import __builtin__ as builtins
+ from collections import Callable, MutableMapping
... | py3compat: import Callable and MulableMapping for py2 compat
The PY2 code path was not importing Callable, which breaks the
compat module when it tries to import Callable from py3compat. | spyder-ide_qtpy | train |
8afb6ff96345e192b54cc0d1f6118dc9edf9a1dd | diff --git a/identities/models.py b/identities/models.py
index <HASH>..<HASH> 100644
--- a/identities/models.py
+++ b/identities/models.py
@@ -42,7 +42,8 @@ class Identity(models.Model):
version = models.IntegerField(default=1)
details = JSONField()
failed_message_count = models.IntegerField(
- de... | Allow Identity.failed_message_count to be Null | praekeltfoundation_seed-identity-store | train |
cdeb2601534db2947934cc52cb2ebca3f360d14b | diff --git a/lang/en/error.php b/lang/en/error.php
index <HASH>..<HASH> 100755
--- a/lang/en/error.php
+++ b/lang/en/error.php
@@ -2,9 +2,18 @@
// error.php - created with Moodle 1.2 development (2003122600)
$string['adminprimarynoedit'] = 'The primary admin cannot be edited by others';
+$string['cannotcreate... | Error strings for component_installer class added. | moodle_moodle | train |
dc61a90f725dd4cff764cb7faf6aec6dda2c99a6 | diff --git a/src/components/core/images/loadImage.js b/src/components/core/images/loadImage.js
index <HASH>..<HASH> 100644
--- a/src/components/core/images/loadImage.js
+++ b/src/components/core/images/loadImage.js
@@ -5,7 +5,8 @@ export default function (imageEl, src, srcset, sizes, checkForComplete, callback
funct... | Avoid loading simulation when is picture
Avoid loading by js, it was identify using lighthouse, and this was making duplicate the loading, | nolimits4web_swiper | train |
973c3464a158331b082a0f450282bf7875f13e09 | diff --git a/mtools/mlaunch/mlaunch.py b/mtools/mlaunch/mlaunch.py
index <HASH>..<HASH> 100755
--- a/mtools/mlaunch/mlaunch.py
+++ b/mtools/mlaunch/mlaunch.py
@@ -743,7 +743,7 @@ class MLaunchTool(BaseCmdLineTool):
if role_doc['role'] == "clusterAdmin":
found_cluster_admin ... | Fix #<I>: Can't launch mongodb instance with `--auth` (#<I>) | rueckstiess_mtools | train |
5e49c86de7a6ea4bb8d5fa3919173f2e76d0fd86 | diff --git a/src/test/java/net/snowflake/client/jdbc/ConnectionWithOCSPModeIT.java b/src/test/java/net/snowflake/client/jdbc/ConnectionWithOCSPModeIT.java
index <HASH>..<HASH> 100644
--- a/src/test/java/net/snowflake/client/jdbc/ConnectionWithOCSPModeIT.java
+++ b/src/test/java/net/snowflake/client/jdbc/ConnectionWithO... | SNOW-<I>: Fix ocsp wrong host name test failure (#<I>)
Fix failed test - testWrongHost. | snowflakedb_snowflake-jdbc | train |
c7ed7c6ae210e776c112ac2e0a3f55b6860f5270 | diff --git a/src/IniParser.php b/src/IniParser.php
index <HASH>..<HASH> 100644
--- a/src/IniParser.php
+++ b/src/IniParser.php
@@ -7,11 +7,11 @@
* * Property nesting
* * Simple arrays
*
- * Compatible with PHP 5.2.3 and up
+ * Compatible with PHP 5.3.0+
*
* @author Austin Hyde
+ * @author Till Klampaeckel <... | * add myself as author
* update php dep | austinhyde_IniParser | train |
68d15fe717f25d9990705df3cadc317b9686cf26 | diff --git a/cheroot/test/test_ssl.py b/cheroot/test/test_ssl.py
index <HASH>..<HASH> 100644
--- a/cheroot/test/test_ssl.py
+++ b/cheroot/test/test_ssl.py
@@ -502,6 +502,10 @@ def test_ssl_env(
# builtin ssl environment generation may use a loopback socket
# ensure no ResourceWarning was raised during the tes... | Avoid ResourceWarning access under PyPy | cherrypy_cheroot | train |
18df9309ea199d5ef25d07c271ba8601c64d3742 | diff --git a/Granam/Tests/Tools/TestWithMockery.php b/Granam/Tests/Tools/TestWithMockery.php
index <HASH>..<HASH> 100644
--- a/Granam/Tests/Tools/TestWithMockery.php
+++ b/Granam/Tests/Tools/TestWithMockery.php
@@ -14,6 +14,8 @@ abstract class TestWithMockery extends \PHPUnit_Framework_TestCase
*/
protected ... | Class to mock is checked if exists. | granam_tools | train |
733d76a88d7a28434ab46bfe4f8e45821e7568b5 | diff --git a/node/config_test.go b/node/config_test.go
index <HASH>..<HASH> 100644
--- a/node/config_test.go
+++ b/node/config_test.go
@@ -115,7 +115,7 @@ func TestNodeKeyPersistency(t *testing.T) {
}
config := &Config{Name: "unit-test", DataDir: dir, P2P: p2p.Config{PrivateKey: key}}
config.NodeKey()
- if _, err... | node: remove noop path.Join (#<I>) | ethereum_go-ethereum | train |
34bda26b71812f3f87a976eb8e7d32e719915e8f | diff --git a/pkg/kvstore/allocator/allocator.go b/pkg/kvstore/allocator/allocator.go
index <HASH>..<HASH> 100644
--- a/pkg/kvstore/allocator/allocator.go
+++ b/pkg/kvstore/allocator/allocator.go
@@ -49,7 +49,7 @@ const (
// listTimeout is the time to wait for the initial list operation to
// succeed when creating... | kvstore/allocator: start watcher without waiting
* set listTimeout to 3 minutes | cilium_cilium | train |
55bcd1a6dad822b6711d2433344f341c5c1763b8 | diff --git a/initializers/servers.js b/initializers/servers.js
index <HASH>..<HASH> 100644
--- a/initializers/servers.js
+++ b/initializers/servers.js
@@ -64,7 +64,21 @@ module.exports = {
for(var server in api.servers.servers){
started++;
if(api.config.servers[server] && api.config.servers[server].e... | logging what ip and port are bound to | actionhero_actionhero | train |
0afa391e1773bb6f8f11f47fdb86287a88620f75 | diff --git a/main.js b/main.js
index <HASH>..<HASH> 100644
--- a/main.js
+++ b/main.js
@@ -56,22 +56,7 @@ var transformOptions = {
allowReturnOutsideFunction: true,
allowSuperOutsideMethod: true,
strictMode: false,
- plugins: [
- "asyncFunctions",
- "asyncGenerators",
- "classConstructo... | Support all Babylon plugins and add test of function.sent.
Note that the function.sent test would not compile in native Node, which
is why it had to be added to test/non-native.js.
Fixes #<I>. | facebook_regenerator | train |
0ce591f751e5b5b8839127977137e294eb06c770 | diff --git a/lib/natural/stemmers/indonesian/stemmer_id.js b/lib/natural/stemmers/indonesian/stemmer_id.js
index <HASH>..<HASH> 100644
--- a/lib/natural/stemmers/indonesian/stemmer_id.js
+++ b/lib/natural/stemmers/indonesian/stemmer_id.js
@@ -131,11 +131,9 @@ function loadDictionary(){
var fs = require('fs');
... | Fixed stemmer loading bug where it was iterating through everything in Array including prototype inherited methods | NaturalNode_natural | train |
1939c9050ef9e9c14f004ca473737a41b5d087fc | diff --git a/projects/samskivert/src/java/com/samskivert/util/ArrayIntSet.java b/projects/samskivert/src/java/com/samskivert/util/ArrayIntSet.java
index <HASH>..<HASH> 100644
--- a/projects/samskivert/src/java/com/samskivert/util/ArrayIntSet.java
+++ b/projects/samskivert/src/java/com/samskivert/util/ArrayIntSet.java
@... | Made addAll() more efficient if it is called with another ArrayIntSet as
its argument.
git-svn-id: <URL> | samskivert_samskivert | train |
06948effac1346a49df640c2ae9e6bc8b6d3ef89 | diff --git a/spec/features/navigator_spec.rb b/spec/features/navigator_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/features/navigator_spec.rb
+++ b/spec/features/navigator_spec.rb
@@ -2,7 +2,7 @@
require "rails_helper"
-RSpec.describe "Site Navigation" do
+RSpec.describe "Site Navigation", type: :feature do
... | Fixed Rubocop RSpec/DescribeClass issue. | bkuhlmann_navigator | train |
e7ec14b0c4185692b19e50964a4077818e9d74ad | diff --git a/library/Tr8n/Language.php b/library/Tr8n/Language.php
index <HASH>..<HASH> 100644
--- a/library/Tr8n/Language.php
+++ b/library/Tr8n/Language.php
@@ -348,7 +348,7 @@ class Language extends Base {
return parent::toArray($keys);
}
- $info = parent::toArray(array("locale", "name... | added flafg url to caching | translationexchange_tml-php-clientsdk | train |
068ab5144244648bcba3b7261c41836a4ba5cf0f | diff --git a/layer/layer_store.go b/layer/layer_store.go
index <HASH>..<HASH> 100644
--- a/layer/layer_store.go
+++ b/layer/layer_store.go
@@ -739,11 +739,13 @@ func (ls *layerStore) assembleTarTo(graphID string, metadata io.ReadCloser, size
func (ls *layerStore) Cleanup() error {
orphanLayers, err := ls.store.getOr... | layer: layerstore.Cleanup(): improve some logging
Improve consistency for the logs, and remove a redundant log:
time="<I>-<I>-<I>T<I>:<I>:<I>Z" level=debug msg="found 0 orphan layers" | moby_moby | train |
c6444ac31f13d1d8329a0be3277605ae52ba3f5c | diff --git a/tests/helpers/CMTest/library/CMTest/TH.php b/tests/helpers/CMTest/library/CMTest/TH.php
index <HASH>..<HASH> 100644
--- a/tests/helpers/CMTest/library/CMTest/TH.php
+++ b/tests/helpers/CMTest/library/CMTest/TH.php
@@ -30,16 +30,7 @@ class CMTest_TH {
}
$siteCMTest = new CMTest_Site_CM();
- $siteId... | Refactoring: Added method CMTest_TH::configureSite()
- Used to configure the default site as well as each new mock site | cargomedia_cm | train |
e7cf7313306ff9212661eae70b6c1bec06078613 | diff --git a/library/CM/Janus/Configuration.php b/library/CM/Janus/Configuration.php
index <HASH>..<HASH> 100644
--- a/library/CM/Janus/Configuration.php
+++ b/library/CM/Janus/Configuration.php
@@ -1,6 +1,6 @@
<?php
-class CM_Janus_Configuration {
+class CM_Janus_Configuration extends CM_Class_Abstract {
/**... | extend CM_Class_Abstract | cargomedia_cm | train |
1b6a06695384ebb187f59640175d170f69672aa7 | diff --git a/scapy.py b/scapy.py
index <HASH>..<HASH> 100755
--- a/scapy.py
+++ b/scapy.py
@@ -2261,7 +2261,7 @@ class BERcodec_OID(BERcodec_Object):
_mib_re_integer = re.compile("^[0-9]+$")
_mib_re_both = re.compile("^([a-zA-Z_][a-zA-Z0-9_-]*)\(([0-9]+)\)$")
-_mib_re_oiddecl = re.compile("$\s*([a-zA-Z0-9_-]+)\s+OB... | Improved mib parsing a bit
It will never be perfect until I implement a real parser
instead of using regexp | secdev_scapy | train |
d4cea26d1084e2056bbd36d067d2ce06f6672cb2 | diff --git a/src/Traits/HasPermissions.php b/src/Traits/HasPermissions.php
index <HASH>..<HASH> 100644
--- a/src/Traits/HasPermissions.php
+++ b/src/Traits/HasPermissions.php
@@ -113,7 +113,10 @@ trait HasPermissions
}
if (is_int($permission)) {
- $permission = app(Permission::class)->fin... | Check for guard if id of permission sent to hasPermissionTo method. | spatie_laravel-permission | train |
d1c6f8058b1254fb5dd4b04a26bf3f0e2f153f92 | diff --git a/tests/Database/DatabaseEloquentBuilderTest.php b/tests/Database/DatabaseEloquentBuilderTest.php
index <HASH>..<HASH> 100755
--- a/tests/Database/DatabaseEloquentBuilderTest.php
+++ b/tests/Database/DatabaseEloquentBuilderTest.php
@@ -222,6 +222,8 @@ class DatabaseEloquentBuilderTest extends PHPUnit_Framewo... | [<I>] fix build (#<I>)
* fix build
* fix style | laravel_framework | train |
91d46cca3b827c3c6b5cc05d740887f2702e8f0f | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,7 @@
**Added**:
- Added method `Text.rgb_color`
- Added support of parameter `safe` for method `Text.hex_color`
+- Added an alias `zip_code` for `Address.postal_code`
**Optimizations**:
- Signifi... | Added zip_code alias | lk-geimfari_mimesis | train |
763dfde36cd67c9f539cbd0db54b4dcdf3d15b77 | diff --git a/parquet-hive/src/main/java/parquet/hive/read/DataWritableReadSupport.java b/parquet-hive/src/main/java/parquet/hive/read/DataWritableReadSupport.java
index <HASH>..<HASH> 100644
--- a/parquet-hive/src/main/java/parquet/hive/read/DataWritableReadSupport.java
+++ b/parquet-hive/src/main/java/parquet/hive/rea... | Fix for columns list missing from the conf
- In this case, assume that the schema and requested schema
correspond to the file schema | apache_parquet-mr | train |
c86a8f436f8a04f3f220d8160e08ebd94e967ff7 | diff --git a/src/Magazine/Magazine.php b/src/Magazine/Magazine.php
index <HASH>..<HASH> 100644
--- a/src/Magazine/Magazine.php
+++ b/src/Magazine/Magazine.php
@@ -97,12 +97,13 @@ class Magazine
}
}
+ $xml = new \DOMDocument();
+ $xml->preserveWhiteSpace = FALSE;
+ $xml->load... | Added the package.xml to the package | mridang_magazine | train |
fefaeab922d73fae06607422523eb2582b6c0356 | diff --git a/src/Bool.php b/src/Bool.php
index <HASH>..<HASH> 100755
--- a/src/Bool.php
+++ b/src/Bool.php
@@ -9,7 +9,7 @@
* @since 1.0.0
*/
-namespace Jstewmc/PhpHelpers;
+namespace Jstewmc\PhpHelpers;
/**
* A class of boolean (aka, "bool") utility methods
@@ -27,7 +27,9 @@ class Bool
* ... | Refactor and fix Bool
Added logic to test the validity of Bool::booltostr()'s arguments, fixed
a few variable name issues, and fixed a few comments. | jstewmc_php-helpers | train |
298be40ae1b0c54486bc7fef3cc1ed4a76ac2268 | diff --git a/scanpy/plotting/tools/__init__.py b/scanpy/plotting/tools/__init__.py
index <HASH>..<HASH> 100644
--- a/scanpy/plotting/tools/__init__.py
+++ b/scanpy/plotting/tools/__init__.py
@@ -536,7 +536,7 @@ def rank_genes_groups_violin(
_ax.set_title('{} vs. {}'.format(group_name, reference))
_ax.... | Fix xticklabels in rank_genes_groups_violin to display gene_symbols | theislab_scanpy | train |
a2907aa1de6b73318df40398be5d903165077c65 | diff --git a/instabot/bot/bot_comment.py b/instabot/bot/bot_comment.py
index <HASH>..<HASH> 100644
--- a/instabot/bot/bot_comment.py
+++ b/instabot/bot/bot_comment.py
@@ -45,8 +45,8 @@ def comment_medias(self, medias):
def comment_hashtag(self, hashtag, amount=None):
self.logger.info("Going to comment medias by... | Add real amount in like_hashtag and comment_hashtag | instagrambot_instabot | train |
dc335bf2a10e89e9718a2849e883c571f52908b2 | diff --git a/src/Crawler.php b/src/Crawler.php
index <HASH>..<HASH> 100644
--- a/src/Crawler.php
+++ b/src/Crawler.php
@@ -280,7 +280,7 @@ class Crawler
->each(function (Url $url) use ($foundOnUrl) {
$node = $this->addtoDepthTree($this->depthTree, (string) $url, $foundOnUrl);
- ... | Speed improvement. Not calculate the node depth, if maximumDepth not defined. (#<I>) | spatie_crawler | train |
b2804156db400c8e0d1f9eec8ea8846cfaa8d36b | diff --git a/flat/style/flat.editor.js b/flat/style/flat.editor.js
index <HASH>..<HASH> 100644
--- a/flat/style/flat.editor.js
+++ b/flat/style/flat.editor.js
@@ -3,6 +3,7 @@ var editoropen = false;
var coselector = -1; //disabled
var editforms = {'direct': true, 'correction': false,'alternative': false, 'new': true}... | use ACCEPTED_DATA in the pull down menu for addable fields + introduced editedelementtype var | proycon_flat | train |
03473fb9b7492db144c055bb14ae98522627d72a | diff --git a/pypika/__init__.py b/pypika/__init__.py
index <HASH>..<HASH> 100644
--- a/pypika/__init__.py
+++ b/pypika/__init__.py
@@ -52,16 +52,18 @@ from .queries import (
Query,
Schema,
Table,
- Tuple,
make_tables as Tables,
)
# noinspection PyUnresolvedReferences
from .terms import (
+ ... | Added a term for holding brackets in order to maintain order of operations in expressions | kayak_pypika | train |
ee2acb4592ca4f5a5cf28f83e8d4eb8a22423ea6 | diff --git a/appium/device.go b/appium/device.go
index <HASH>..<HASH> 100644
--- a/appium/device.go
+++ b/appium/device.go
@@ -13,6 +13,7 @@ type mobileSession interface {
LaunchApp() error
CloseApp() error
InstallApp(appPath string) error
+ Reset() error
PerformTouch(actions []mobile.Action) error
}
@@ -51,... | add methode Reset to appium devices | sclevine_agouti | train |
be568b787753f2f42ed17183fd7f333763073657 | diff --git a/tensorflow_datasets/summarization/scientific_papers.py b/tensorflow_datasets/summarization/scientific_papers.py
index <HASH>..<HASH> 100644
--- a/tensorflow_datasets/summarization/scientific_papers.py
+++ b/tensorflow_datasets/summarization/scientific_papers.py
@@ -16,9 +16,6 @@
# Lint as: python3
"""Sci... | Update scientific_papers.py | tensorflow_datasets | train |
9996a0f6c421138da5f52a6021e9b6b0480821d3 | diff --git a/symphony/assets/symphony.duplicator.js b/symphony/assets/symphony.duplicator.js
index <HASH>..<HASH> 100644
--- a/symphony/assets/symphony.duplicator.js
+++ b/symphony/assets/symphony.duplicator.js
@@ -77,6 +77,7 @@
widgets.controls.before(instance);
object.trigger('construct', [instance]);
... | first implementation of an reducing duplicator | symphonycms_symphony-2 | train |
f970ccd12f410ef268ee2b618b7a011fd688db27 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@ def read(fname):
return io.open(file_path, encoding='utf-8').read()
-version = '0.7.1'
+version = '0.7.2.dev0'
setuptools.setup( | Back to development: <I> | ecmwf_cfgrib | train |
eb777906dc82425c43372067157897eb82d0ac0b | diff --git a/engineer/engine.py b/engineer/engine.py
index <HASH>..<HASH> 100644
--- a/engineer/engine.py
+++ b/engineer/engine.py
@@ -76,6 +76,15 @@ def build(args=None):
mirror_folder(s, t)
logger.debug("Copied static files to %s." % relpath(t))
+ # Copy 'raw' content to output cache - first pass
+... | Copy raw content twice instead of only once.
Without this change, static content in a site's raw content folder
can't benefit from the Engineer build pipeline. With this change in
place, site-specific raw content can be compressed, preprocessed,
etc. just like theme content and built-in Engineer resources. | tylerbutler_engineer | train |
ac77ed085fb3fc35068ac91cfcd90311cbf3e325 | diff --git a/Helper/Order.php b/Helper/Order.php
index <HASH>..<HASH> 100644
--- a/Helper/Order.php
+++ b/Helper/Order.php
@@ -420,11 +420,11 @@ class Order extends AbstractHelper
// Emulate frontend area in order for email
// template to be loaded from the correct path
// even if run from th... | BoltPay Admin: Updated email sending. | BoltApp_bolt-magento2 | train |
a4b110d5d7b27990efb97eadc0b100cb97e33c7a | diff --git a/lib/compiler.js b/lib/compiler.js
index <HASH>..<HASH> 100644
--- a/lib/compiler.js
+++ b/lib/compiler.js
@@ -490,7 +490,7 @@ var importExportVisitor = new types.PathVisitor.fromMethodsObject({
var dd = decl.declaration;
if (dd) {
- var specifierMap = {};
+ var specifierMap = Object.c... | Use `Object.create(null)` in a few more places. (#<I>) | benjamn_reify | train |
cb7c5394156ab504d18eb117216aefa88fc12788 | diff --git a/exp/sdb/conn/post_body_test.go b/exp/sdb/conn/post_body_test.go
index <HASH>..<HASH> 100644
--- a/exp/sdb/conn/post_body_test.go
+++ b/exp/sdb/conn/post_body_test.go
@@ -120,7 +120,12 @@ func (t *PostBodyTest) SpaceAndPlus() {
}
func (t *PostBodyTest) KoreanCharacters() {
- ExpectEq("TODO", "")
+ req :... | PostBodyTest.KoreanCharacters | jacobsa_aws | train |
46ca99abd56559336b80583e740bdd270670465e | diff --git a/src/matreshka.js b/src/matreshka.js
index <HASH>..<HASH> 100644
--- a/src/matreshka.js
+++ b/src/matreshka.js
@@ -562,15 +562,11 @@ var MK = gc.MK = gc.Matreshka = Class({
unbindElement: function( key, el, evtOpts ) {
var $el,
keys;
- try { // "Class doesn't support Automation" bug in IE8
- if(... | changed id view; minor change in MK#unbindElement method | matreshkajs_matreshka | train |
f6f5cbd1bf11ae654e9ca84dcc6e7916be3bde9b | diff --git a/src/tuwien/auto/calimero/process/ProcessCommunicatorImpl.java b/src/tuwien/auto/calimero/process/ProcessCommunicatorImpl.java
index <HASH>..<HASH> 100644
--- a/src/tuwien/auto/calimero/process/ProcessCommunicatorImpl.java
+++ b/src/tuwien/auto/calimero/process/ProcessCommunicatorImpl.java
@@ -105,18 +105,1... | Add a method to check for optimized ASDU | calimero-project_calimero-core | train |
8e22066d078afcbb012fe9c4a235a4cf4fd4efa6 | diff --git a/src/config/analytics.php b/src/config/analytics.php
index <HASH>..<HASH> 100644
--- a/src/config/analytics.php
+++ b/src/config/analytics.php
@@ -16,6 +16,7 @@ return [
* The Google Analytics provider supports the following properties:
* - tracking_id (string)
* - tracking_domain (string:auto) ... | Add tracker_name to config docblock | ipunkt_laravel-analytics | train |
ef81653ee13f4df16c9efa76caacb69b2c998188 | diff --git a/src/jukeboxcore/djadapter.py b/src/jukeboxcore/djadapter.py
index <HASH>..<HASH> 100644
--- a/src/jukeboxcore/djadapter.py
+++ b/src/jukeboxcore/djadapter.py
@@ -30,8 +30,8 @@ from jukeboxcore.log import get_logger
log = get_logger(__name__)
if not os.environ.get("DJANGO_SETTINGS_MODULE"):
- import j... | try fixin double teardown of database | JukeboxPipeline_jukebox-core | train |
2a5e9bcce6ceadf3b809fe97eb80bd121520bb96 | diff --git a/remoting/src/main/java/hudson/remoting/Channel.java b/remoting/src/main/java/hudson/remoting/Channel.java
index <HASH>..<HASH> 100644
--- a/remoting/src/main/java/hudson/remoting/Channel.java
+++ b/remoting/src/main/java/hudson/remoting/Channel.java
@@ -219,8 +219,8 @@ public class Channel implements Virtu... | Fixed a bug where the wrong classloader was used to de-serialize the response object.
git-svn-id: <URL> | jenkinsci_jenkins | train |
b306d2ee66ad55bf543f070024e886016308656e | diff --git a/src/Experimental/Dom/Document.php b/src/Experimental/Dom/Document.php
index <HASH>..<HASH> 100644
--- a/src/Experimental/Dom/Document.php
+++ b/src/Experimental/Dom/Document.php
@@ -15,7 +15,6 @@ use Inphinit\Storage;
class Document extends \DOMDocument
{
private $xpath;
- private $logerrors = ar... | Improved DomException
- Fixed backtrace
- Fixed extension Exception class
- Removed unused codes | inphinit_framework | train |
0de573280d777f2a9ea57ebf11fa6225ca32ffe9 | diff --git a/spec/kamerling/server/http_spec.rb b/spec/kamerling/server/http_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/kamerling/server/http_spec.rb
+++ b/spec/kamerling/server/http_spec.rb
@@ -1,14 +1,11 @@
require_relative '../../spec_helper'
module Kamerling describe Server::HTTP do
- let(:addr) { Addr['0.... | simplify Server::HTTP spec | chastell_kamerling | train |
9321637d18327a21329ee5319fee1f83e6d531b4 | diff --git a/cache.go b/cache.go
index <HASH>..<HASH> 100644
--- a/cache.go
+++ b/cache.go
@@ -211,6 +211,7 @@ func (c *RankCache) recalculate() {
c.rankings = rankings
if len(c.rankings) > c.ThresholdIndex {
c.ThresholdValue = rankings[c.ThresholdIndex].Count
+ c.rankings = c.rankings[0:c.ThresholdIndex]
} e... | trim the ranked cache set on the 1st recalculate call | pilosa_pilosa | train |
716fc30ac7c9d71dd701789fd25a55a08ee85425 | diff --git a/vc_zoom/indico_vc_zoom/forms.py b/vc_zoom/indico_vc_zoom/forms.py
index <HASH>..<HASH> 100644
--- a/vc_zoom/indico_vc_zoom/forms.py
+++ b/vc_zoom/indico_vc_zoom/forms.py
@@ -100,7 +100,10 @@ class VCRoomForm(VCRoomFormBase):
def host(self):
if self.host_choice is None:
return Non... | VC/Zoom: fix corner case in host user selection | indico_indico-plugins | train |
893937b4f7d5fe7b326dd6c710586d768d393912 | diff --git a/api/search/basic_index.py b/api/search/basic_index.py
index <HASH>..<HASH> 100644
--- a/api/search/basic_index.py
+++ b/api/search/basic_index.py
@@ -48,10 +48,8 @@ def fetch_profile_data_from_file():
""" takes profile data from file and saves in the profile_data DB
"""
- profile_data_file =... | fixes indexing of subdomains and adds test to the unittests | blockstack_blockstack-core | train |
d644162a294517b29690edf8a5a0da14929ce4b4 | diff --git a/pkg/scheduler/core/generic_scheduler.go b/pkg/scheduler/core/generic_scheduler.go
index <HASH>..<HASH> 100644
--- a/pkg/scheduler/core/generic_scheduler.go
+++ b/pkg/scheduler/core/generic_scheduler.go
@@ -282,7 +282,7 @@ func (g *genericScheduler) processPreemptionWithExtenders(
) (map[*v1.Node]*schedule... | Extender preemption should respect IsInterested() | kubernetes_kubernetes | train |
8199cb51c290871ea4922c4dbcbbe38ccf2ce8f0 | diff --git a/src/angular-material-calendar.js b/src/angular-material-calendar.js
index <HASH>..<HASH> 100644
--- a/src/angular-material-calendar.js
+++ b/src/angular-material-calendar.js
@@ -241,7 +241,7 @@ angular.module("materialCalendar").directive("calendarMd", ["$compile", "$parse"
$scope.dayTooltipFo... | Disabled look when the calendar is loaded in disable Selection view | jsmodules_angular-material-calendar | train |
51c754d0d5bd0946dd4fa11728285dca6b5ca0b9 | diff --git a/src/Mongolid/Cursor/Cursor.php b/src/Mongolid/Cursor/Cursor.php
index <HASH>..<HASH> 100644
--- a/src/Mongolid/Cursor/Cursor.php
+++ b/src/Mongolid/Cursor/Cursor.php
@@ -273,6 +273,7 @@ class Cursor implements CursorInterface, Serializable
protected function getCursor(): Traversable
{
if... | Updated Mongolid\Cursor::getCursor in order to use the Converter to convert Mongolid types to MongoDB driver's types | leroy-merlin-br_mongolid | train |
a0b91da20afed481c77de4d612385ac46a7bb0f0 | diff --git a/mythril/analysis/modules/integer.py b/mythril/analysis/modules/integer.py
index <HASH>..<HASH> 100644
--- a/mythril/analysis/modules/integer.py
+++ b/mythril/analysis/modules/integer.py
@@ -30,7 +30,7 @@ def execute(statespace):
for state in node.states:
logging.debug("Checking for ... | Add reacheability check and check if the expression is used in a requires statement | ConsenSys_mythril-classic | train |
387f29b35fe67abaa25132eebe9cfe24bf2c5305 | diff --git a/lib/rapns/daemon.rb b/lib/rapns/daemon.rb
index <HASH>..<HASH> 100644
--- a/lib/rapns/daemon.rb
+++ b/lib/rapns/daemon.rb
@@ -36,10 +36,7 @@ module Rapns
self.delivery_queue = DeliveryQueue.new(configuration.connections)
- unless foreground?
- daemonize
- ActiveRecord::Base.es... | Move db reconnection after fork into the Feeder. | ileitch_rapns | train |
f6bc9b7d3ff2b85ef8b22734e093bcee76bccf45 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -720,29 +720,11 @@ DCP.transferOwnership = function(input, callback) {
};
/**
- * Accept an invite to a server [User Only]
- * @arg {String} inviteCode - The code part of an invite URL (e.g. 0MvHMfHcTKVVmIG... | acceptInvite functionally removed
Method still works and callback will be ran | izy521_discord.io | train |
bb07b8becd52ed99f8dd1e07c7e98809ea8fa9a7 | diff --git a/htmresearch/algorithms/union_temporal_pooler.py b/htmresearch/algorithms/union_temporal_pooler.py
index <HASH>..<HASH> 100644
--- a/htmresearch/algorithms/union_temporal_pooler.py
+++ b/htmresearch/algorithms/union_temporal_pooler.py
@@ -164,11 +164,11 @@ class UnionTemporalPooler(SpatialPooler):
self... | Update remaining methods in UTP to be compatible with C++ SP | numenta_htmresearch | train |
300620fb50da2e2a5b1e09073e97b3a1a2697570 | diff --git a/openquake/calculators/event_based_risk.py b/openquake/calculators/event_based_risk.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/event_based_risk.py
+++ b/openquake/calculators/event_based_risk.py
@@ -343,7 +343,7 @@ class EbrCalculator(base.RiskCalculator):
return
if dst... | Minor improvement [skip CI] | gem_oq-engine | train |
237edcec74e0d053c75b99b62742db5f594bc27b | diff --git a/imgix/__init__.py b/imgix/__init__.py
index <HASH>..<HASH> 100644
--- a/imgix/__init__.py
+++ b/imgix/__init__.py
@@ -3,24 +3,39 @@ import urllib
import urlparse
import zlib
+SHARD_STRATEGY_CRC = "crc"
+SHARD_STRATEGY_CYCLE = "cycle"
+
SIGNATURE_MODE_QUERY = "query"
SIGNATURE_MODE_PATH = "path" # Uns... | Adding sharding strategies to the library. | imgix_imgix-python | train |
77bc2e37f9100279ee9aeb1a01ec49544e7db4fd | diff --git a/src/Wallhaven/Wallpaper.php b/src/Wallhaven/Wallpaper.php
index <HASH>..<HASH> 100644
--- a/src/Wallhaven/Wallpaper.php
+++ b/src/Wallhaven/Wallpaper.php
@@ -345,11 +345,9 @@ class Wallpaper
*/
public function download($directory)
{
- $client = new Client();
-
$url = $this->... | Download optimizations
* Don't create new client when downloading
* When batch dowloading wallpapers, assume most of them are JPGs, then retry with PNGs for those that failed. | ivkos_wallhaven4php | train |
e0b3028bbda19d91b3f69ff32e70425951e095e4 | diff --git a/.eslintrc b/.eslintrc
index <HASH>..<HASH> 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -11,7 +11,8 @@
"no-confusing-arrow": 0,
"no-else-return": 0,
"react/sort-comp": 0,
- "react/jsx-filename-extension": 0
+ "react/jsx-filename-extension": 0,
+ "no-prototype-builtins": 0
},
"env... | Extending styled components (#<I>)
* if you extend another styled component fold in its rules
* the lint rule should really forbid Object.create(null) instead
* reordering statements
* added test cases for merging these styles | styled-components_styled-components | train |
44c0a8458a75690e1829523de12acddb9d746b6c | diff --git a/dom/MemoryDOMElement.js b/dom/MemoryDOMElement.js
index <HASH>..<HASH> 100644
--- a/dom/MemoryDOMElement.js
+++ b/dom/MemoryDOMElement.js
@@ -579,10 +579,11 @@ export default class MemoryDOMElement extends DOMElement {
_propagateEvent (event) {
let listeners = this.eventListeners
if (listeners... | Let MemoryDOMEvent.emit() trigger all registered handlers on an element. | substance_substance | train |
ceca5cb7edbe7c06ba55dbd4957c6165321d36de | diff --git a/backtrader/lineiterator.py b/backtrader/lineiterator.py
index <HASH>..<HASH> 100644
--- a/backtrader/lineiterator.py
+++ b/backtrader/lineiterator.py
@@ -240,9 +240,6 @@ class LineIterator(six.with_metaclass(MetaLineIterator, LineSeries)):
else:
self.prenext()
- for o... | Move observers call from LineIterator to Strategy (only object with observers) | backtrader_backtrader | train |
8ddf1f2567c87e377b5e91005cfdb16ca3d9bac8 | diff --git a/spec/lib/jobs/base-job-spec.js b/spec/lib/jobs/base-job-spec.js
index <HASH>..<HASH> 100644
--- a/spec/lib/jobs/base-job-spec.js
+++ b/spec/lib/jobs/base-job-spec.js
@@ -32,6 +32,8 @@ describe("Base Job", function () {
var logger = injector.get('Logger').initialize(MockJob);
MockJ... | Minor additions to mock base job values | RackHD_on-tasks | train |
ed6c1f9b89b3d2d355b83812ead0b442204825d5 | diff --git a/pwnypack/shellcode/arm/linux.py b/pwnypack/shellcode/arm/linux.py
index <HASH>..<HASH> 100644
--- a/pwnypack/shellcode/arm/linux.py
+++ b/pwnypack/shellcode/arm/linux.py
@@ -33,7 +33,7 @@ class LinuxARM(Linux, ARM):
Linux.sys_lseek: 19,
Linux.sys_getpid: 20,
Linux.sys_mount: 21,
... | Small cleanups in syscall table. | edibledinos_pwnypack | train |
2ebee15979f30b6855979664a3d2c3a47a1d59a4 | diff --git a/src/packet.js b/src/packet.js
index <HASH>..<HASH> 100644
--- a/src/packet.js
+++ b/src/packet.js
@@ -1,15 +1,19 @@
var
jspack = require('./jspack').jspack;
-const STATUS_NORMAL = 0x00;
-const STATUS_EOM = 0x01; // End Of Message (last packet).
-const STATUS_IGNORE = 0x02; ... | Easy way for caller to create a packet that is the last one (EOM). | tediousjs_tedious | train |
f6636fd745565cbf71aa578eaf81d8e048b6eb74 | diff --git a/lib/converse/conversation.rb b/lib/converse/conversation.rb
index <HASH>..<HASH> 100644
--- a/lib/converse/conversation.rb
+++ b/lib/converse/conversation.rb
@@ -45,10 +45,8 @@ module Converse
private
def guard_options!(options)
- unless options.empty?
- valid_options = [:access_tok... | Refactor to extract the validation of the options to an external object | tatsuio_dialogue | train |
0698777a36186afe4790269f935bffa53e464ece | diff --git a/start.go b/start.go
index <HASH>..<HASH> 100644
--- a/start.go
+++ b/start.go
@@ -85,12 +85,17 @@ command(s) that get executed on start, edit the args parameter of the spec. See
},
}
+func init() {
+ if len(os.Args) > 1 && os.Args[1] == "init" {
+ runtime.GOMAXPROCS(1)
+ runtime.LockOSThread()
+ }
+... | Move lockthread to package level
Move this to be one of the first things that is done in the main if we
are executing the init. | opencontainers_runc | train |
79d99504104c167bb9746c5cd86bf0a1e04cef57 | diff --git a/kitchen-tests/cookbooks/base/metadata.rb b/kitchen-tests/cookbooks/base/metadata.rb
index <HASH>..<HASH> 100644
--- a/kitchen-tests/cookbooks/base/metadata.rb
+++ b/kitchen-tests/cookbooks/base/metadata.rb
@@ -10,9 +10,7 @@ gem "chef-sugar"
depends "apt"
depends "build-es... | Remove the docker install tests
These have no value in testing overall chef funcationality | chef_chef | train |
bc773c126b814f7cef086171ae03e34e27667110 | diff --git a/src/main/java/org/codehaus/groovy/ast/MethodNode.java b/src/main/java/org/codehaus/groovy/ast/MethodNode.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/codehaus/groovy/ast/MethodNode.java
+++ b/src/main/java/org/codehaus/groovy/ast/MethodNode.java
@@ -188,7 +188,7 @@ public class MethodNode exten... | trivial refactor - consistency in generating toString and whitespace | apache_groovy | train |
3f2f075dcd618804e1d65377db40ea8b2e5e97d6 | diff --git a/Spartacus/Database.py b/Spartacus/Database.py
index <HASH>..<HASH> 100644
--- a/Spartacus/Database.py
+++ b/Spartacus/Database.py
@@ -2048,7 +2048,7 @@ class Oracle(Generic):
raise Spartacus.Database.Exception("Oracle is not supported. Please install it with 'pip install Spartacus[oracle]'.")
... | <I>: Improved Oracle message when no password is provided | wind39_spartacus | train |
960cfd0b4c4f1c5cd2dbd1800a21ccc725a223ff | diff --git a/cf/api/service_keys.go b/cf/api/service_keys.go
index <HASH>..<HASH> 100644
--- a/cf/api/service_keys.go
+++ b/cf/api/service_keys.go
@@ -59,13 +59,13 @@ func (c CloudControllerServiceKeyRepository) CreateServiceKey(instanceGuid strin
}
func (c CloudControllerServiceKeyRepository) ListServiceKeys(insta... | Change api endpoint for listing service keys
CLI should use the endpoint `/v2/service_instances/:fake-guid/service_keys`
to list service keys instead of using `/v2/service_keys?q=service_instance_guid:fake-guid`
[#<I>] | cloudfoundry_cli | train |
bbc42532f9b377de374e3150b9e797587ee20b2c | diff --git a/packages/feedback/src/FeedbackForm.js b/packages/feedback/src/FeedbackForm.js
index <HASH>..<HASH> 100644
--- a/packages/feedback/src/FeedbackForm.js
+++ b/packages/feedback/src/FeedbackForm.js
@@ -1,6 +1,6 @@
import React, { useState, useEffect } from 'react';
import PropTypes from 'prop-types';
-import... | refactor: restore modalHeaderProps in PropTypes | Availity_availity-react | train |
9e1fc9a52e691c5ee471f3529112487ef9d3d165 | diff --git a/src/JWTAuthServiceProvider.php b/src/JWTAuthServiceProvider.php
index <HASH>..<HASH> 100755
--- a/src/JWTAuthServiceProvider.php
+++ b/src/JWTAuthServiceProvider.php
@@ -41,15 +41,15 @@ class JWTAuthServiceProvider extends ServiceProvider
return $app['tymon.jwt.auth'];
};
- ... | tweaking naming and fixing service provider | tymondesigns_jwt-auth | train |
3fe6944765c5ad121a633c9c94f5e8b27c9c3fdf | diff --git a/internal/service/ec2/security_group.go b/internal/service/ec2/security_group.go
index <HASH>..<HASH> 100644
--- a/internal/service/ec2/security_group.go
+++ b/internal/service/ec2/security_group.go
@@ -24,12 +24,12 @@ import (
)
func ResourceSecurityGroup() *schema.Resource {
- securityGroupRuleSetSche... | Use 'NestedBlock' rather than 'Resource' in rule schema variable names. | terraform-providers_terraform-provider-aws | train |
c7725ef45d332920ee317e5b9dcf7b86105926ed | diff --git a/observable-slim.js b/observable-slim.js
index <HASH>..<HASH> 100644
--- a/observable-slim.js
+++ b/observable-slim.js
@@ -161,6 +161,9 @@ var ObservableSlim = (function() {
// for performance improvements, we assign this to a variable so we do not have to lookup the property value again
var tar... | Property deletion after ObservableSlim.remove fails | ElliotNB_observable-slim | train |
21fcc2d6b34998c1de51a9f641ffc168b1572b04 | diff --git a/lib/vagrant-vbguest/hosts/base.rb b/lib/vagrant-vbguest/hosts/base.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant-vbguest/hosts/base.rb
+++ b/lib/vagrant-vbguest/hosts/base.rb
@@ -20,6 +20,9 @@ module VagrantVbguest
@version ||= driver.version
end
+ def read_guest_additions_version... | rewire read_guest_additions_version
basically overwriting Vagrant’s driver implementation to try to use `VBoxManage showvminfo` first and Vagrant’s implementation as a fallback.
The default `guestproperty` seems to be prone to return outdated/incorrect values | dotless-de_vagrant-vbguest | train |
f06e374a1f0f09469b49cbe4b7959c77b1513d8e | diff --git a/src/main/java/uk/co/real_logic/agrona/concurrent/AtomicArray.java b/src/main/java/uk/co/real_logic/agrona/concurrent/AtomicArray.java
index <HASH>..<HASH> 100644
--- a/src/main/java/uk/co/real_logic/agrona/concurrent/AtomicArray.java
+++ b/src/main/java/uk/co/real_logic/agrona/concurrent/AtomicArray.java
@... | [Java] Allow reference to the internal array in AtomicArray for direct iteration. | real-logic_agrona | train |
4a3735be6d6752c266047d8d173e7aa9bb874b42 | diff --git a/functional/pipeline.py b/functional/pipeline.py
index <HASH>..<HASH> 100644
--- a/functional/pipeline.py
+++ b/functional/pipeline.py
@@ -18,7 +18,7 @@ import future.builtins as builtins
from functional.execution import ExecutionEngine
from functional.lineage import Lineage
-from functional.util import... | Work to fix bug found in issue #<I> | EntilZha_PyFunctional | train |
183f5db913944643adacd477cefd8f7d51d32a70 | diff --git a/src/lib/hardcoded.js b/src/lib/hardcoded.js
index <HASH>..<HASH> 100644
--- a/src/lib/hardcoded.js
+++ b/src/lib/hardcoded.js
@@ -19,14 +19,14 @@ define(
'iriscouch.com': {
api: 'couchdb',
authPrefix: 'http://proxy.unhosted.org/OAuth.html?userAddress=',
- templatePrefix: 'ht... | yet another version of the pds discovery syntax | remotestorage_remotestorage.js | train |
7a7988148d36ec0d9398eacf21b0dbdaf0064a35 | diff --git a/lib/kafka/cluster.rb b/lib/kafka/cluster.rb
index <HASH>..<HASH> 100644
--- a/lib/kafka/cluster.rb
+++ b/lib/kafka/cluster.rb
@@ -187,6 +187,11 @@ module Kafka
sleep 1
retry
+ rescue Kafka::UnknownTopicOrPartition
+ @logger.warn "Topic `#{name}` not yet created, waiting 1s..... | Retry another error case in `create_topic`
If UnknownTopicOrPartition is raised we still want to retry. It's
probably because the topic has not yet been created. | zendesk_ruby-kafka | train |
d983a9e3d9faaab5653b522041c96543441a7c4d | diff --git a/django_cms_tools/filer_tools/helper.py b/django_cms_tools/filer_tools/helper.py
index <HASH>..<HASH> 100644
--- a/django_cms_tools/filer_tools/helper.py
+++ b/django_cms_tools/filer_tools/helper.py
@@ -7,6 +7,7 @@ import logging
from django.apps import apps
from django.conf import settings
+from django... | Bugfix "image_info" if DB tables not created | jedie_django-cms-tools | train |
bcdad953baa37d2ce70d9e52febf7673303c7748 | diff --git a/structr-ui/src/main/resources/structr/js/structr-app.js b/structr-ui/src/main/resources/structr/js/structr-app.js
index <HASH>..<HASH> 100644
--- a/structr-ui/src/main/resources/structr/js/structr-app.js
+++ b/structr-ui/src/main/resources/structr/js/structr-app.js
@@ -105,7 +105,7 @@ function StructrApp(b... | to handle dynamically created structr buttons (#<I>)
PR to handle dynamically created structr buttons | structr_structr | train |
5b2c3a18140c4f2f7c2b504920431d4b1028528f | diff --git a/backend/cloud_inquisitor/schema/base.py b/backend/cloud_inquisitor/schema/base.py
index <HASH>..<HASH> 100644
--- a/backend/cloud_inquisitor/schema/base.py
+++ b/backend/cloud_inquisitor/schema/base.py
@@ -172,6 +172,7 @@ class Account(Model, BaseModelMixin):
Returns:
`None`
... | Log that we are deleting the account | RiotGames_cloud-inquisitor | train |
f0eb1f8ca2c28ee8e58873c1091e747cd43f30bc | diff --git a/tools/vis2.py b/tools/vis2.py
index <HASH>..<HASH> 100755
--- a/tools/vis2.py
+++ b/tools/vis2.py
@@ -273,6 +273,8 @@ def main():
fns.append(iorder)
filenames.append(tuple(fns))
+ filenames.append(("KVBenchmark-five9s-latency", "", "", "http://ci/view/system%20tests-elastic/job/perfo... | performance charts: include five9s latency historams chart | VoltDB_voltdb | train |
8d43a74707ce0d5db76f4f1c80033f6b9da73877 | diff --git a/src/Stampie/Extra/Message/Decorator.php b/src/Stampie/Extra/Message/Decorator.php
index <HASH>..<HASH> 100644
--- a/src/Stampie/Extra/Message/Decorator.php
+++ b/src/Stampie/Extra/Message/Decorator.php
@@ -3,6 +3,7 @@
namespace Stampie\Extra\Message;
use Stampie\MessageInterface;
+use Stampie\Message\T... | Added the support of taggable messages in the decorator | Stampie_extra | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.