hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
0f518ecfd33a832fc58428db38f994ff885cfcfb | diff --git a/src/main/java/com/j256/ormlite/stmt/QueryBuilder.java b/src/main/java/com/j256/ormlite/stmt/QueryBuilder.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/j256/ormlite/stmt/QueryBuilder.java
+++ b/src/main/java/com/j256/ormlite/stmt/QueryBuilder.java
@@ -11,8 +11,7 @@ import com.j256.ormlite.stmt.qu... | Tuning the javadocs trying to get it to work. Grrr. | j256_ormlite-core | train |
8d7ec40e047885e45d4bdb720ef7fe0a4675d1f4 | diff --git a/src/main/java/org/dstadler/commons/logging/jdk/DefaultFormatter.java b/src/main/java/org/dstadler/commons/logging/jdk/DefaultFormatter.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/dstadler/commons/logging/jdk/DefaultFormatter.java
+++ b/src/main/java/org/dstadler/commons/logging/jdk/DefaultForm... | Avoid possible NullPointerException if classname/loggername is set to null, e.g. happens with Elasticsearch Java API | centic9_commons-dost | train |
a0d8e283348f3e99b80ede16220dca845d62d4ae | diff --git a/cordova-lib/src/cordova/emulate.js b/cordova-lib/src/cordova/emulate.js
index <HASH>..<HASH> 100644
--- a/cordova-lib/src/cordova/emulate.js
+++ b/cordova-lib/src/cordova/emulate.js
@@ -35,8 +35,10 @@ module.exports = function emulate(options) {
var hooksRunner = new HooksRunner(projectRoot);
... | CB-<I>: Add cordova emulate option to skip prepare
This closes #<I> | apache_cordova-lib | train |
7a2ce7d9d16e13afae76dc59148ea927c475056b | diff --git a/tests/entity_test.py b/tests/entity_test.py
index <HASH>..<HASH> 100644
--- a/tests/entity_test.py
+++ b/tests/entity_test.py
@@ -105,6 +105,9 @@ def test_from_raw_file(fx_session, fx_sample_image, tmp_store):
with something.cover.open_file(tmp_store) as f:
actual = f.read()
assert actua... | Fix broken build due to Wand's failure of opening SVG | dahlia_sqlalchemy-imageattach | train |
e60f51d2a80059cfd4199639518db646606868fe | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -57,6 +57,19 @@ app.config.load()
Then, in your app root path, create a directory `config` and add two files `config.yml` and `local_config.yml`. See [Usage](#usage) for more detailed usage and [Example](#examples) for ... | refactor the flask-helper and update documentation for more general use case | eriktaubeneck_ordbok | train |
ab6f0e1876ff0fb98abd190c9a7b35ab42ccfa81 | diff --git a/index.html b/index.html
index <HASH>..<HASH> 100644
--- a/index.html
+++ b/index.html
@@ -5,10 +5,11 @@
<script src="./src/sag.js"></script>
<script>
var couch = sag.server('localhost', '80')
+ .setDatabase('db/bwah')
.decode(false);
couch.get({... | setDatabase() and currDatabase concept | sbisbee_sag-js | train |
90e6130f4e468a23e89d7fb12f4fc29c89a6f584 | diff --git a/bin/units_from_xls.py b/bin/units_from_xls.py
index <HASH>..<HASH> 100644
--- a/bin/units_from_xls.py
+++ b/bin/units_from_xls.py
@@ -231,9 +231,11 @@ def unit_defs_from_sheet(sheet, column_names):
continue
seen.add(key)
- yield "%s = UnitDescriptor('%s', '%s', '''%s''')\n" % (
- ... | Support ' or ' in units.xml (#<I>) | google_openhtf | train |
6f48c089ad8a5b52c89e4d0d290180e312d8efae | diff --git a/lib/authorizer/oauth2.js b/lib/authorizer/oauth2.js
index <HASH>..<HASH> 100644
--- a/lib/authorizer/oauth2.js
+++ b/lib/authorizer/oauth2.js
@@ -1,3 +1,10 @@
+var HEADER = 'header',
+ URL = 'url',
+ DEFAULT_ADD_TOKEN_TO = HEADER,
+ BEARER = 'bearer',
+ AUTHORIZATION = 'Authorization',
+ AUT... | Implement Oauth-2 and add test cases | postmanlabs_postman-runtime | train |
e76a7e76b9145a309f8ef1cbfe787b4acfa004a6 | diff --git a/js/phemex.js b/js/phemex.js
index <HASH>..<HASH> 100644
--- a/js/phemex.js
+++ b/js/phemex.js
@@ -21,7 +21,7 @@ module.exports = class phemex extends Exchange {
'pro': true,
'hostname': 'api.phemex.com',
'has': {
- 'cancelAllOrders': true, // swap contr... | phemex cancelAllOrders for spot markets | ccxt_ccxt | train |
7e8b59bbf22456e8a5f1ec4a180cf11eb78ea97f | diff --git a/classes/Gems/Util/DbLookup.php b/classes/Gems/Util/DbLookup.php
index <HASH>..<HASH> 100644
--- a/classes/Gems/Util/DbLookup.php
+++ b/classes/Gems/Util/DbLookup.php
@@ -260,6 +260,9 @@ class Gems_Util_DbLookup extends Gems_Registry_TargetAbstract
->order('glo_name');
if ($org... | Added test for glo_active | GemsTracker_gemstracker-library | train |
fad7950f9a40372466171e475a4ddfdd965bebda | diff --git a/src/main/com/mongodb/DBApiLayer.java b/src/main/com/mongodb/DBApiLayer.java
index <HASH>..<HASH> 100644
--- a/src/main/com/mongodb/DBApiLayer.java
+++ b/src/main/com/mongodb/DBApiLayer.java
@@ -22,14 +22,7 @@ import com.mongodb.util.JSON;
import org.bson.BSONObject;
import org.bson.types.ObjectId;
-imp... | DBCursor.next() throws NoSuchElementException
The contract for Iterator requires implementations to throw a
java.util.NoSuchElementException when next() is called and
there are no elements to return, i.e., when hasNext() returns
false. | mongodb_mongo-java-driver | train |
b5316cbe20e467fa3945ba3320ecf66d1edf2d67 | diff --git a/latools/D_obj.py b/latools/D_obj.py
index <HASH>..<HASH> 100644
--- a/latools/D_obj.py
+++ b/latools/D_obj.py
@@ -1274,10 +1274,41 @@ class D(object):
'Trimmed Filter ({:.0f} start, {:.0f} end)'.format(start, end),
params, setn=self.filt.maxset + 1)
+ @_log
+ ... | filter exclude downhole, and signal optimiser to accommodate multiple ablations | oscarbranson_latools | train |
421256d294c8a31122f38cae2ab11b5ccad74f2d | diff --git a/lib/devise/controllers/internal_helpers.rb b/lib/devise/controllers/internal_helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/devise/controllers/internal_helpers.rb
+++ b/lib/devise/controllers/internal_helpers.rb
@@ -39,7 +39,7 @@ module Devise
# Attempt to find the mapped route for devise based on... | Devise should respect script_name and path_info contracts. This closes #<I>, a long standing bug with Passenger. | plataformatec_devise | train |
968b4d30483f8a9716f10f7dc8c759e6b9ccc786 | diff --git a/src/pyrocore/data/config/config.ini b/src/pyrocore/data/config/config.ini
index <HASH>..<HASH> 100644
--- a/src/pyrocore/data/config/config.ini
+++ b/src/pyrocore/data/config/config.ini
@@ -38,7 +38,7 @@ custom_field_factories =
[FORMATS]
# Custom output formats
-completion = $(completed.raw.delta)13.1... | rtcontrol: Added field "leechtime" (completed-started, if applicable) | pyroscope_pyrocore | train |
d862a8b821420ce8e79af3fd2b1a4fe8afd8787b | diff --git a/lib/Doctrine/DBAL/Migrations/Migration.php b/lib/Doctrine/DBAL/Migrations/Migration.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/DBAL/Migrations/Migration.php
+++ b/lib/Doctrine/DBAL/Migrations/Migration.php
@@ -126,7 +126,7 @@ class Migration
}
if ($from === $to) {
- t... | Silently quit when no migrations need to be executed. | doctrine_migrations | train |
bf69762c54e7accc0f991d04476375aff1cabbc9 | diff --git a/db/tasks.go b/db/tasks.go
index <HASH>..<HASH> 100644
--- a/db/tasks.go
+++ b/db/tasks.go
@@ -256,8 +256,7 @@ func (db *DB) GetAllTasks(filter *TaskFilter) ([]*Task, error) {
}
func (db *DB) GetTask(id string) (*Task, error) {
- filter := TaskFilter{UUID: id}
- r, err := db.GetAllTasks(&filter)
+ r, er... | Handle exact match Task searching, and not-found situations | starkandwayne_shield | train |
0982c46ff9dae93e10a2a0749b7a1da49046a08c | diff --git a/bolt-micronaut/src/test/java/test_locally/app/CommandsTest.java b/bolt-micronaut/src/test/java/test_locally/app/CommandsTest.java
index <HASH>..<HASH> 100644
--- a/bolt-micronaut/src/test/java/test_locally/app/CommandsTest.java
+++ b/bolt-micronaut/src/test/java/test_locally/app/CommandsTest.java
@@ -14,8 ... | Fix deprecation warning in tests | seratch_jslack | train |
80a8794125578c165d15272eccf22a1572d90ecd | diff --git a/docs/pages/components/datetimepicker/api/datetimepicker.js b/docs/pages/components/datetimepicker/api/datetimepicker.js
index <HASH>..<HASH> 100644
--- a/docs/pages/components/datetimepicker/api/datetimepicker.js
+++ b/docs/pages/components/datetimepicker/api/datetimepicker.js
@@ -10,14 +10,14 @@ export de... | Docs: datetimepicker: typo + language (#<I>) | buefy_buefy | train |
9103a3a1892fc5c2f152da06c29b54a0f1fff60c | diff --git a/lib/active_record/typed_store/extension.rb b/lib/active_record/typed_store/extension.rb
index <HASH>..<HASH> 100644
--- a/lib/active_record/typed_store/extension.rb
+++ b/lib/active_record/typed_store/extension.rb
@@ -99,7 +99,8 @@ module ActiveRecord::TypedStore
end
previous_value = read_s... | Type cast assigned value before checking for dirty attribute | byroot_activerecord-typedstore | train |
5f4215237075c8337f38ca8b00dc70a61a76a1ea | diff --git a/torrent_helper/torrent_helper.py b/torrent_helper/torrent_helper.py
index <HASH>..<HASH> 100644
--- a/torrent_helper/torrent_helper.py
+++ b/torrent_helper/torrent_helper.py
@@ -1,5 +1,4 @@
import sys
-import urllib2
import urllib
import cookielib
import re
@@ -38,15 +37,9 @@ def call_tpb(torrent):
#... | [Issues-4] Replace all urllib2 APIs with Requests | prateekM59_torrent_helper | train |
15aea1fad4c027468ba3672ecafc0d6edd7f40d6 | diff --git a/src/Material/Temporary.php b/src/Material/Temporary.php
index <HASH>..<HASH> 100644
--- a/src/Material/Temporary.php
+++ b/src/Material/Temporary.php
@@ -103,7 +103,7 @@ class Temporary extends AbstractAPI
throw new InvalidArgumentException("Unsupported media type: '{$type}'");
}
- ... | 提交 (#<I>) | overtrue_wechat | train |
7528aa70f91f323999c4b3032362e2c4345682c1 | diff --git a/gbdxtools/rda/util.py b/gbdxtools/rda/util.py
index <HASH>..<HASH> 100644
--- a/gbdxtools/rda/util.py
+++ b/gbdxtools/rda/util.py
@@ -34,7 +34,7 @@ from gbdxtools.deprecate import GBDXDeprecation, deprecation
RDA_TO_DTYPE = {
"BINARY": "bool",
- "BYTE": "byte",
+ "BYTE": "uint8",
"SHORT"... | converting rda types of byte to uint8 so the reported dtype matches data when fetched to ndarrays | DigitalGlobe_gbdxtools | train |
19254dd0ea4014a52773fd0e44b2a68fbf704cca | diff --git a/packages/aws-cdk/test/integ/cli/jest.config.js b/packages/aws-cdk/test/integ/cli/jest.config.js
index <HASH>..<HASH> 100644
--- a/packages/aws-cdk/test/integ/cli/jest.config.js
+++ b/packages/aws-cdk/test/integ/cli/jest.config.js
@@ -10,6 +10,6 @@ module.exports = {
verbose: true,
reporters: [
... | chore: output junit files to coverage folder (#<I>)
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-<I> license* | awslabs_aws-cdk | train |
89fe82e024427721a715645a28550d9706c67c6a | diff --git a/tests/Probability/Distribution/Continuous/UniformTest.php b/tests/Probability/Distribution/Continuous/UniformTest.php
index <HASH>..<HASH> 100644
--- a/tests/Probability/Distribution/Continuous/UniformTest.php
+++ b/tests/Probability/Distribution/Continuous/UniformTest.php
@@ -40,4 +40,25 @@ class UniformT... | Add unit tests for Uniform mean. | markrogoyski_math-php | train |
20c6583d011e4377a59bb7f51e35adcb398c91cd | diff --git a/cellbase-app/src/main/java/org/opencb/cellbase/app/transform/ProteinParser.java b/cellbase-app/src/main/java/org/opencb/cellbase/app/transform/ProteinParser.java
index <HASH>..<HASH> 100644
--- a/cellbase-app/src/main/java/org/opencb/cellbase/app/transform/ProteinParser.java
+++ b/cellbase-app/src/main/jav... | New Uniprot from biodata is working fone now | opencb_cellbase | train |
1175a10214fec6d9c9e9776d6d453c9ae57bf8e1 | diff --git a/lib/assessments/colorBackgroundImageContrast.js b/lib/assessments/colorBackgroundImageContrast.js
index <HASH>..<HASH> 100644
--- a/lib/assessments/colorBackgroundImageContrast.js
+++ b/lib/assessments/colorBackgroundImageContrast.js
@@ -3,6 +3,10 @@ quail.colorBackgroundImageContrast = function (quail, te... | Add color assessment configuration to the remaining color tests | quailjs_quail | train |
bfc1e590d666ab8d063db64e25346e339432e94a | diff --git a/lib/active_record/connection_adapters/oracle_enhanced/schema_statements.rb b/lib/active_record/connection_adapters/oracle_enhanced/schema_statements.rb
index <HASH>..<HASH> 100644
--- a/lib/active_record/connection_adapters/oracle_enhanced/schema_statements.rb
+++ b/lib/active_record/connection_adapters/or... | Made it able to change column with adding comment | rsim_oracle-enhanced | train |
8e18671e96b83d76213325e34ee987ff037223d4 | diff --git a/salt/states/grains.py b/salt/states/grains.py
index <HASH>..<HASH> 100644
--- a/salt/states/grains.py
+++ b/salt/states/grains.py
@@ -15,7 +15,7 @@ from salt.defaults import DEFAULT_TARGET_DELIM
import re
-def present(name, value, delimiter=':', force=False):
+def present(name, value, delimiter=DEFAUL... | grains state: use DEFAULT_TARGET_DELIM | saltstack_salt | train |
d799d4822cfa15d3d47c5bb5c92964163cf88e31 | diff --git a/crowd.py b/crowd.py
index <HASH>..<HASH> 100644
--- a/crowd.py
+++ b/crowd.py
@@ -45,8 +45,8 @@ class CrowdServer(object):
elif response.status_code == 404:
return True
else:
- raise CrowdApiException("Unexpected response code %d: %s" % (
- response.... | do not raise exception in auth_ping | pycontribs_python-crowd | train |
3043a58ab98c97b57abadc8d3a22b5fb891ccf51 | diff --git a/Kwf/User/Model.php b/Kwf/User/Model.php
index <HASH>..<HASH> 100644
--- a/Kwf/User/Model.php
+++ b/Kwf/User/Model.php
@@ -232,7 +232,7 @@ class Kwf_User_Model extends Kwf_Model_RowCache
$loginData = Kwf_Auth::getInstance()->getStorage()->read();
if (!$loginData || !isset($loginData['use... | return authedUserId even if not in session | koala-framework_koala-framework | train |
1170f7801e0699950e0c0c2023186e9be8a77ecd | diff --git a/samtranslator/feature_toggle/feature_toggle.py b/samtranslator/feature_toggle/feature_toggle.py
index <HASH>..<HASH> 100644
--- a/samtranslator/feature_toggle/feature_toggle.py
+++ b/samtranslator/feature_toggle/feature_toggle.py
@@ -108,6 +108,7 @@ class FeatureToggleAppConfigConfigProvider(FeatureToggleC... | chore: Add logging to boto3.client usage (#<I>) | awslabs_serverless-application-model | train |
398946d39a16aaa1856e408f737b0dfff5599309 | diff --git a/ReactNativeClient/lib/components/screens/note.js b/ReactNativeClient/lib/components/screens/note.js
index <HASH>..<HASH> 100644
--- a/ReactNativeClient/lib/components/screens/note.js
+++ b/ReactNativeClient/lib/components/screens/note.js
@@ -186,8 +186,8 @@ class NoteScreenComponent extends BaseScreenCompo... | Mobile: Fixes #<I>: Fixed moving new notes before they are saved | laurent22_joplin | train |
faf799db47f294c357772b21dcc7219aed0b7f5a | diff --git a/concrete/blocks/core_conversation/form.php b/concrete/blocks/core_conversation/form.php
index <HASH>..<HASH> 100644
--- a/concrete/blocks/core_conversation/form.php
+++ b/concrete/blocks/core_conversation/form.php
@@ -92,7 +92,7 @@ if (!$dateFormat) {
} else {
... | Specify that the attribute to create is a Rating type
Furthermore avoid re-translating it: let's keep the current translation of the
Rating attribute type | concrete5_concrete5 | train |
0d1a1becf3c420e637197e2fa3a472dcfca52d4d | diff --git a/lib/excon/ssl_socket.rb b/lib/excon/ssl_socket.rb
index <HASH>..<HASH> 100644
--- a/lib/excon/ssl_socket.rb
+++ b/lib/excon/ssl_socket.rb
@@ -63,13 +63,14 @@ module Excon
# maintain existing API
certificate_path = @data[:client_cert] || @data[:certificate_path]
private_key_path = @data... | option to supply passphrase for private tls key | excon_excon | train |
56f8c0e25abdd64f6b33702ec2c2c7865e2d561d | diff --git a/webpack.config.js b/webpack.config.js
index <HASH>..<HASH> 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -1,12 +1,43 @@
const path = require('path')
+const MiniCssExtractPlugin = require('mini-css-extract-plugin')
module.exports = {
- entry: './js/src/common.js',
+ entry: {
+ common:... | configure webpack to compile JS and LESS | sitecrafting_groot | train |
36b0acbef85244d7a9c69449a4d5492db269d433 | diff --git a/framework/web/CDataProviderIterator.php b/framework/web/CDataProviderIterator.php
index <HASH>..<HASH> 100644
--- a/framework/web/CDataProviderIterator.php
+++ b/framework/web/CDataProviderIterator.php
@@ -45,25 +45,25 @@ class CDataProviderIterator implements Iterator, Countable
* The current index
... | #<I> make protected members private | yiisoft_yii | train |
0f4e4f18a41ea7153cb16dc69f6b964da0d1fceb | diff --git a/pyspectral/rayleigh.py b/pyspectral/rayleigh.py
index <HASH>..<HASH> 100644
--- a/pyspectral/rayleigh.py
+++ b/pyspectral/rayleigh.py
@@ -21,8 +21,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-"""Rayleig... | Use us-standard atm and marine-clean aerosol distribution as the default | pytroll_pyspectral | train |
0f284ae78ccbf732f5550f96d0deebe287dab115 | diff --git a/osmnx/utils.py b/osmnx/utils.py
index <HASH>..<HASH> 100644
--- a/osmnx/utils.py
+++ b/osmnx/utils.py
@@ -352,6 +352,9 @@ def get_nearest_node(G, point, method='greatcircle', return_dist=False):
if euclidean) between the point and nearest node
"""
start_time = time.time()
+
+ if not ... | check if graph G is empty or contains no nodes | gboeing_osmnx | train |
96fd3e97d9c5511296a9cbae66abf147ad5d34ff | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
-VERSION = '2.1.0'
+VERSION = '2.2.0'
long_description = 'This package contains the tools you need to quickly ' \
'integ... | [SDK-<I>]: Bumped version to <I> | getyoti_yoti-python-sdk | train |
4d46638552274b6dab9d858918356566657f0a85 | diff --git a/lib/Vespolina/Invoice/Manager/InvoiceManager.php b/lib/Vespolina/Invoice/Manager/InvoiceManager.php
index <HASH>..<HASH> 100755
--- a/lib/Vespolina/Invoice/Manager/InvoiceManager.php
+++ b/lib/Vespolina/Invoice/Manager/InvoiceManager.php
@@ -88,10 +88,13 @@ class InvoiceManager implements InvoiceManagerInt... | Added a check if interval is null | vespolina_commerce | train |
e90bd97703e7ca85429d031100311a7ff414770d | diff --git a/cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/CloudFoundryOperations.java b/cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/CloudFoundryOperations.java
index <HASH>..<HASH> 100644
--- a/cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/CloudFoundryOpera... | Upgrade CF CLI Support
This change upgrades the support CF CLI version to <I>.
[#<I>] | cloudfoundry_cf-java-client | train |
629f3eee21a7ea2b87cbef5d2820d80c0b1339a7 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -46,6 +46,8 @@ BUG FIXES:
* core: No colored output in machine-readable output. [GH-684]
* core: User variables can now be used for non-string fields. [GH-598]
+* core: Fix bad download paths if the downloa... | core: cache makes proper path with slashes after "." [GH-<I>] | hashicorp_packer | train |
64d2023dfd681a79b622cb2972bff2a4467f8a39 | diff --git a/lib/sync.js b/lib/sync.js
index <HASH>..<HASH> 100644
--- a/lib/sync.js
+++ b/lib/sync.js
@@ -232,7 +232,7 @@ function Synchroniser (server, host, port, conf, interactive) {
yield dao.applyMainBranch(block);
}
} else {
- yield server.BlockchainService.fastB... | [fix] duniter/duniter#<I> Move fast sync to duniter core (missing variable) | duniter_duniter-crawler | train |
828fe78aaf01ea2cfd9edf0a87ab1a2d234b3f50 | diff --git a/spyder/app/mainwindow.py b/spyder/app/mainwindow.py
index <HASH>..<HASH> 100644
--- a/spyder/app/mainwindow.py
+++ b/spyder/app/mainwindow.py
@@ -505,10 +505,7 @@ class MainWindow(QMainWindow):
self.layout_toolbar = None
self.layout_toolbar_actions = []
- self.menus = [self.fi... | Main Window: Move calling setup_menus to post_visible_setup
Also add again method to hide Options menus | spyder-ide_spyder | train |
20c2090bc676eb311fc1a3a057f9936fffb45652 | diff --git a/stacker/tests/lookups/handlers/test_ssmstore.py b/stacker/tests/lookups/handlers/test_ssmstore.py
index <HASH>..<HASH> 100644
--- a/stacker/tests/lookups/handlers/test_ssmstore.py
+++ b/stacker/tests/lookups/handlers/test_ssmstore.py
@@ -6,7 +6,7 @@ from stacker.lookups.handlers.ssmstore import handler
... | Added region to the ssm store test client | cloudtools_stacker | train |
6b170fdb4b518a7f15010916c26b025b663e2e7c | diff --git a/eureka-core/src/main/java/com/netflix/eureka/util/StatusInfo.java b/eureka-core/src/main/java/com/netflix/eureka/util/StatusInfo.java
index <HASH>..<HASH> 100644
--- a/eureka-core/src/main/java/com/netflix/eureka/util/StatusInfo.java
+++ b/eureka-core/src/main/java/com/netflix/eureka/util/StatusInfo.java
@... | Remove assignment of instanceInfo from static instance.
f<I>f<I>a<I>d<I>aeb8c<I>b4f<I>fe7e7b5 made instanceInfo a required field to be set, but an assignment was still happening from `ApplicationInfoManager.getInstance().getInfo()` overwriting assigned field. | Netflix_eureka | train |
7cbf175a99f1800e589533459985d542eb87c827 | diff --git a/nestly/core.py b/nestly/core.py
index <HASH>..<HASH> 100644
--- a/nestly/core.py
+++ b/nestly/core.py
@@ -186,6 +186,7 @@ class Nest(object):
if create_dir:
new_outdir = os.path.join(outdir, label_func(to_label))
+ new_control['OUTDIR'] = new_outdir
... | Adding an 'OUTDIR' key to nest controls.
This has the added benefit of simplifying the implementation of add_target in
nestly.scons so it doesn't have to pre-build a list of targets. | fhcrc_nestly | train |
b17b50dbccdaf33cc598dbfc76f05c566c27a162 | diff --git a/src/prospector.js b/src/prospector.js
index <HASH>..<HASH> 100644
--- a/src/prospector.js
+++ b/src/prospector.js
@@ -2,7 +2,7 @@
var resource = require('./resource');
-exports.Prospector = resource.create('Prospector', {api: 'prospector'})
+exports.Prospector = resource.create('Prospector', {api: 'pr... | Bump the Prospector path version. | clearbit_clearbit-node | train |
23c952fe08b2e7ea0f8d7673f45b17547e331f4b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -122,6 +122,8 @@ class Distribution(_Distribution):
return False
def ext_status(self, ext):
+ if 'Java' in sys.version or 'IronPython' in sys.version or 'PyPy' in sys.version:
+ return False
... | Do not attempt to build extensions on platforms other than CPython. | yaml_pyyaml | train |
f5507016a76e527ffd74133dde376661f78f2abb | diff --git a/libraries/joomla/table/table.php b/libraries/joomla/table/table.php
index <HASH>..<HASH> 100644
--- a/libraries/joomla/table/table.php
+++ b/libraries/joomla/table/table.php
@@ -20,7 +20,7 @@ jimport('joomla.filesystem.path');
* @subpackage Table
* @link http://docs.joomla.org/JTable
* @since... | Code formatting changes to resolve all code formatting errors reported by PHP Codesniffer using joomla / coding-standards from <URL> | joomla_joomla-framework | train |
94636476d2d7aa27515a71c963077cf9b110809e | diff --git a/src/Psalm/Internal/Analyzer/Statements/Expression/BinaryOpAnalyzer.php b/src/Psalm/Internal/Analyzer/Statements/Expression/BinaryOpAnalyzer.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Internal/Analyzer/Statements/Expression/BinaryOpAnalyzer.php
+++ b/src/Psalm/Internal/Analyzer/Statements/Expression/Bi... | Fix checking if union type with mixed is nullable (#<I>)
Fixes #<I> | vimeo_psalm | train |
64853d0bbaff97d9f7b690dfb7ec389f5ff227cf | diff --git a/buildapi_client/buildapi_client.py b/buildapi_client/buildapi_client.py
index <HASH>..<HASH> 100644
--- a/buildapi_client/buildapi_client.py
+++ b/buildapi_client/buildapi_client.py
@@ -16,7 +16,7 @@ import requests
HOST_ROOT = 'https://secure.pub.build.mozilla.org/buildapi'
SELF_SERVE = '{}/self-serve... | Shorten logger name to buildapi | armenzg_buildapi_client | train |
ae10e3dffd597abed28403515149d65061b02bbf | diff --git a/server/src/main/webapp/WEB-INF/rails/spec/webpack/models/dashboard/pipeline_instance_spec.js b/server/src/main/webapp/WEB-INF/rails/spec/webpack/models/dashboard/pipeline_instance_spec.js
index <HASH>..<HASH> 100644
--- a/server/src/main/webapp/WEB-INF/rails/spec/webpack/models/dashboard/pipeline_instance_... | Deserialize stage approved_by field from the dashboard json | gocd_gocd | train |
8d44e5628b56fd54e44bcac609f4152e0b82f264 | diff --git a/Behat/MailCatcherContext.php b/Behat/MailCatcherContext.php
index <HASH>..<HASH> 100644
--- a/Behat/MailCatcherContext.php
+++ b/Behat/MailCatcherContext.php
@@ -47,7 +47,11 @@ class MailCatcherContext implements Context, TranslatableContext, MailCatcherAwa
}
$this->currentMessage = nul... | Allow connection error when purging before scenario (fixes #5) | alexandresalome_mailcatcher | train |
4157704a3066f21fad212fe2c373be6e7058fb18 | diff --git a/elastic/datadog_checks/elastic/metrics.py b/elastic/datadog_checks/elastic/metrics.py
index <HASH>..<HASH> 100644
--- a/elastic/datadog_checks/elastic/metrics.py
+++ b/elastic/datadog_checks/elastic/metrics.py
@@ -505,6 +505,15 @@ NODE_SYSTEM_METRICS_POST_5 = {
'system.load.1': ('gauge', 'os.cpu.load_... | Add additional node metrics to monitor cpu throttling (#<I>)
* - add additional node metrics
* - update version for agent
* - fix linter
* - fix tests
* - use formatter to format style
* - add metrics into metadata, undo versioning
* Update elastic/metadata.csv | DataDog_integrations-core | train |
32906917090ea034d23e48d9ad5203b6a3c14e0c | diff --git a/composer.json b/composer.json
index <HASH>..<HASH> 100644
--- a/composer.json
+++ b/composer.json
@@ -15,7 +15,7 @@
}
},
"require": {
- "catlabinteractive/charon": "^1.4.22"
+ "catlabinteractive/charon": "^1.5.0"
},
"require-dev": {
"laravel/framework": "... | Working on separating filters from the actual filtering so filters can be used to do authorization of requests. | CatLabInteractive_charon-laravel | train |
6facf436c813ca8e4bf8ea3d7013f40f11e069f1 | diff --git a/kernel/classes/eznodeviewfunctions.php b/kernel/classes/eznodeviewfunctions.php
index <HASH>..<HASH> 100644
--- a/kernel/classes/eznodeviewfunctions.php
+++ b/kernel/classes/eznodeviewfunctions.php
@@ -151,6 +151,15 @@ class eZNodeviewfunctions
$tpl->setVariable( 'collection_attributes', $collecti... | Fix EZP-<I>: Custom variables are not correctly exposed in legacy templates when doing a sub-request | ezsystems_ezpublish-legacy | train |
123bcc93bccb38da094066b4375b22df49300b19 | diff --git a/src/lib/dom/xul.js b/src/lib/dom/xul.js
index <HASH>..<HASH> 100644
--- a/src/lib/dom/xul.js
+++ b/src/lib/dom/xul.js
@@ -7,15 +7,12 @@ const ns = 'http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul';
const allowed = {
attributes: {
- global: ['aria-label', 'aria-valuetext', 'aria-moz-h... | Make accesskey and label globally localizable in XUL | l20n_l20n.js | train |
20f24a504ede3c6953bff41f080d933de6f567d3 | diff --git a/core/api/src/test/java/org/openengsb/core/api/ConnectorIdTest.java b/core/api/src/test/java/org/openengsb/core/api/ConnectorIdTest.java
index <HASH>..<HASH> 100644
--- a/core/api/src/test/java/org/openengsb/core/api/ConnectorIdTest.java
+++ b/core/api/src/test/java/org/openengsb/core/api/ConnectorIdTest.ja... | [OPENENGSB-<I>] add _should to test-names | openengsb_openengsb | train |
43a116a78633e04febf10a7e274e30024227ce65 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -48,9 +48,9 @@ copyright = u'2013, Chris Cornutt'
# built documents.
#
# The short X.Y version.
-version = '1.3'
+version = '1.4'
# The full version, including alpha/beta/rc tags.
-release = '1.3'
+release ... | updating the version in the docs config | enygma_expose | train |
114c3a501784fb2d0a014a07c879f3852eb68437 | diff --git a/lib/carrierwave/mongoid.rb b/lib/carrierwave/mongoid.rb
index <HASH>..<HASH> 100644
--- a/lib/carrierwave/mongoid.rb
+++ b/lib/carrierwave/mongoid.rb
@@ -29,13 +29,20 @@ module CarrierWave
after_save :"store_#{column}!"
before_save :"write_#{column}_identifier"
after_destroy :"remove_#... | Fix carrierwave <I> support | carrierwaveuploader_carrierwave-mongoid | train |
a3381760738120cf359277c89e3911b160733fe2 | diff --git a/tests/unit/core/oxsystemeventhandlerTest.php b/tests/unit/core/oxsystemeventhandlerTest.php
index <HASH>..<HASH> 100644
--- a/tests/unit/core/oxsystemeventhandlerTest.php
+++ b/tests/unit/core/oxsystemeventhandlerTest.php
@@ -157,23 +157,10 @@ class Unit_Core_oxSystemEventHandlerTest extends OxidTestCase
... | ESDEV-<I> Keeping time 3days after validity time
test fix | OXID-eSales_oxideshop_ce | train |
5591f91acfa2f835c406b523514cf7e8e11d34f7 | diff --git a/app/config/mimes.php b/app/config/mimes.php
index <HASH>..<HASH> 100644
--- a/app/config/mimes.php
+++ b/app/config/mimes.php
@@ -26,6 +26,8 @@ return array
'h' => 'text/x-c',
'htm' => 'text/html',
'html' => 'text/html',
+ 'ics' => 'text/calendar',
+ 'ical' => 'text... | Added ics, ical, m4a, m4v, 3gp and 3g2 mimes | mako-framework_framework | train |
716a6a59d561750a725e78699180be83f0d7ff28 | diff --git a/test/com/google/javascript/jscomp/DataFlowAnalysisTest.java b/test/com/google/javascript/jscomp/DataFlowAnalysisTest.java
index <HASH>..<HASH> 100644
--- a/test/com/google/javascript/jscomp/DataFlowAnalysisTest.java
+++ b/test/com/google/javascript/jscomp/DataFlowAnalysisTest.java
@@ -747,8 +747,7 @@ publi... | FIXUP: Remove an unnecessary cast
-------------
Created by MOE: <URL> | google_closure-compiler | train |
c4f3623e82f54ce5f637f1a9b4c072a998b51b17 | diff --git a/spyder_kernels/console/start.py b/spyder_kernels/console/start.py
index <HASH>..<HASH> 100644
--- a/spyder_kernels/console/start.py
+++ b/spyder_kernels/console/start.py
@@ -17,6 +17,8 @@ import os.path as osp
import sys
import site
+from traitlets import DottedObjectName
+
# Local imports
from spyde... | set outstream_class in SpyderKernelApp to use isatty | spyder-ide_spyder-kernels | train |
c3085fbff808dcb176c7b38336db5f5b66149654 | diff --git a/src/CoandaCMS/Coanda/Pages/Repositories/Eloquent/Models/PageLocation.php b/src/CoandaCMS/Coanda/Pages/Repositories/Eloquent/Models/PageLocation.php
index <HASH>..<HASH> 100644
--- a/src/CoandaCMS/Coanda/Pages/Repositories/Eloquent/Models/PageLocation.php
+++ b/src/CoandaCMS/Coanda/Pages/Repositories/Eloque... | Added a name and parents attribute to the PageLocation model. | CoandaCMS_coanda-core | train |
c6a2effc1f4bd910e28f595ff6615f9b8fedea33 | diff --git a/Neos.Neos/Classes/Fusion/Cache/ContentCacheFlusher.php b/Neos.Neos/Classes/Fusion/Cache/ContentCacheFlusher.php
index <HASH>..<HASH> 100644
--- a/Neos.Neos/Classes/Fusion/Cache/ContentCacheFlusher.php
+++ b/Neos.Neos/Classes/Fusion/Cache/ContentCacheFlusher.php
@@ -14,7 +14,6 @@ namespace Neos\Neos\Fusion\... | TASK: Use new psr LoggerInterface in ContentCacheFlusher | neos_neos-development-collection | train |
f590d8d1a1bd261b8d9d688e44614225fcad2dc0 | diff --git a/Twig/ThemeFilesystemLoader.php b/Twig/ThemeFilesystemLoader.php
index <HASH>..<HASH> 100644
--- a/Twig/ThemeFilesystemLoader.php
+++ b/Twig/ThemeFilesystemLoader.php
@@ -52,24 +52,8 @@ final class ThemeFilesystemLoader extends \Twig_Loader_Filesystem
return $this->cache[$logicalName];
... | [Theme] Clean up theme filesystem loader | Sylius_SyliusThemeBundle | train |
842c05fe90fa26e17f9709ef393a1dee6adc5b26 | diff --git a/bees/cronbee/cron/crontime.go b/bees/cronbee/cron/crontime.go
index <HASH>..<HASH> 100644
--- a/bees/cronbee/cron/crontime.go
+++ b/bees/cronbee/cron/crontime.go
@@ -111,6 +111,9 @@ func (c *crontime) nextValidMonth(baseTime time.Time) {
return
}
} else {
+ if mon < int(c.calculatedTime.Month... | Added some unit-tests and fixed some bugs. | muesli_beehive | train |
2a71e286c936f1ba18f76b40ee28ce4ac30f2b39 | diff --git a/src/LineString.php b/src/LineString.php
index <HASH>..<HASH> 100644
--- a/src/LineString.php
+++ b/src/LineString.php
@@ -72,6 +72,44 @@ class LineString extends Curve
}
/**
+ * Creates a rectangle out of two 2D corner points.
+ *
+ * This result is a linear ring (closed and simple)... | Add LineString::rectangle() factory method
This creates a linear ring rectangle from two 2D corner points. | brick_geo | train |
66489e4f03c9cbe1d535e8393a3944cefc10fbd7 | diff --git a/dev/encode/igv.html b/dev/encode/igv.html
index <HASH>..<HASH> 100644
--- a/dev/encode/igv.html
+++ b/dev/encode/igv.html
@@ -22,8 +22,12 @@
<!-- Juicebox JS -->
<script src="https://cdn.jsdelivr.net/npm/juicebox.js@2.2.0/dist/juicebox.min.js"></script>
- <!-- IGV JS -->
- <script src="ht... | default biginteract track type to "interact" | igvteam_igv.js | train |
212258d213330fc0a7c3f14ddaf577411930f88d | diff --git a/lib/fs/basicfs_test.go b/lib/fs/basicfs_test.go
index <HASH>..<HASH> 100644
--- a/lib/fs/basicfs_test.go
+++ b/lib/fs/basicfs_test.go
@@ -455,27 +455,29 @@ func TestRooted(t *testing.T) {
}
for _, tc := range cases {
- // Add case where root is backslashed, rel is forward slashed
- extraCases =... | lib/fs: Consolidate append in test | syncthing_syncthing | train |
5a0e6f80ed3a103237234eb6376f6ab4faa72e48 | diff --git a/TrainerDex.py b/TrainerDex.py
index <HASH>..<HASH> 100644
--- a/TrainerDex.py
+++ b/TrainerDex.py
@@ -18,11 +18,11 @@ Trainer = namedtuple('Trainer', [
class Requests:
def __init__(self, token):
- self.url = "http://127.0.0.1:8000/api/trainer"
+ self.url = 'http://127.0.0.1:8000/api/trainer/'
sel... | Minor change to how API url is stored | TrainerDex_TrainerDex.py | train |
2e164048c78b396caef6e67d05593f641d515f68 | diff --git a/test/model/test_ocrd_mets.py b/test/model/test_ocrd_mets.py
index <HASH>..<HASH> 100644
--- a/test/model/test_ocrd_mets.py
+++ b/test/model/test_ocrd_mets.py
@@ -1,3 +1,4 @@
+from datetime import datetime
from test.base import TestCase, main, assets
from ocrd.constants import MIMETYPE_PAGE, VERSION
@@ ... | check METS identifier date against current year (instead of <I>) | OCR-D_core | train |
3df5ca8f54cfb3b4d1cee05c932e73db3588a98d | diff --git a/agglomod/__init__.py b/agglomod/__init__.py
index <HASH>..<HASH> 100644
--- a/agglomod/__init__.py
+++ b/agglomod/__init__.py
@@ -2,3 +2,5 @@ import allset
allset.set_all_submodules(globals())
allset.bind_all_submodules(globals())
del allset
+
+from agglomod import NewmanGreedy
diff --git a/setup.p... | Fixed import format to stay the same as pre-allset. | MSeal_agglom_cluster | train |
64ed46edc1a59db1ba7d06938d799a4d5cec339c | diff --git a/state/spaces.go b/state/spaces.go
index <HASH>..<HASH> 100644
--- a/state/spaces.go
+++ b/state/spaces.go
@@ -21,10 +21,9 @@ type Space struct {
}
type spaceDoc struct {
- DocID string `bson:"_id"`
- EnvUUID string `bson:"env-uuid"`
- Life Life `bson:"life"`
-
+ DocID string `bson:"_id"`
+ En... | Update subnets when creating a space | juju_juju | train |
45016c1a30b9927c6519f008cb6c593db81a8750 | diff --git a/base/lib/social_stream/models/object.rb b/base/lib/social_stream/models/object.rb
index <HASH>..<HASH> 100644
--- a/base/lib/social_stream/models/object.rb
+++ b/base/lib/social_stream/models/object.rb
@@ -14,6 +14,18 @@ module SocialStream
has_one :channel, :through => :activity_object
... | Object relations on ActivityObjectProperty | ging_social_stream | train |
3ebb011b0fff6f9b4605ca6891c438522b47ba05 | diff --git a/src/main/java/org/camunda/bpm/engine/test/needle/ProcessEngineNeedleRule.java b/src/main/java/org/camunda/bpm/engine/test/needle/ProcessEngineNeedleRule.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/camunda/bpm/engine/test/needle/ProcessEngineNeedleRule.java
+++ b/src/main/java/org/camunda/bpm/e... | allow getters for configuration and datasource to simplify testing | camunda_camunda-bpm-needle | train |
3934724aaf8e59f9b3ef1f0855d64815f02c5242 | diff --git a/indra/assemblers/pysb_assembler.py b/indra/assemblers/pysb_assembler.py
index <HASH>..<HASH> 100644
--- a/indra/assemblers/pysb_assembler.py
+++ b/indra/assemblers/pysb_assembler.py
@@ -482,6 +482,7 @@ def complex_monomers_one_step(stmt, agent_set):
gene_mono.create_site(get_binding_site_name(... | Fix missing policy defaults for some statement types | sorgerlab_indra | train |
a7e339244b78c381623d4646fcc4473780ba4ab1 | diff --git a/test/partial_double_test.py b/test/partial_double_test.py
index <HASH>..<HASH> 100644
--- a/test/partial_double_test.py
+++ b/test/partial_double_test.py
@@ -284,7 +284,10 @@ class TestBuiltInConstructorMethods(object):
teardown()
- assert User('Alice', 25) is not user
+ result =... | Update partial_double_test
* Ensure that values passed into constructor our passed into __init__ | uber_doubles | train |
4d415e38ee8515fa7c14d6c50c2f18b956cce350 | diff --git a/src/logger/Handler/StreamHandler.php b/src/logger/Handler/StreamHandler.php
index <HASH>..<HASH> 100644
--- a/src/logger/Handler/StreamHandler.php
+++ b/src/logger/Handler/StreamHandler.php
@@ -71,7 +71,7 @@ class StreamHandler extends AbstractHandler
public function close(): void
{
- if... | Take over some improvements from Monolog's StreamHandler implementation | scheb_tombstone | train |
5014ac0ae75a17e403926f5f6eda2c9791e4a938 | diff --git a/lib/tumugi/version.rb b/lib/tumugi/version.rb
index <HASH>..<HASH> 100644
--- a/lib/tumugi/version.rb
+++ b/lib/tumugi/version.rb
@@ -1,3 +1,3 @@
module Tumugi
- VERSION = "0.5.1"
+ VERSION = "0.5.2"
end | Bumpup version to <I> | tumugi_tumugi | train |
634a3172d869e2ff772b2e0813169641ca9e6cc5 | diff --git a/pytorch_transformers/tests/tokenization_bert_test.py b/pytorch_transformers/tests/tokenization_bert_test.py
index <HASH>..<HASH> 100644
--- a/pytorch_transformers/tests/tokenization_bert_test.py
+++ b/pytorch_transformers/tests/tokenization_bert_test.py
@@ -125,6 +125,17 @@ class BertTokenizationTest(Commo... | Added integration tests for sequence builders. | huggingface_pytorch-pretrained-BERT | train |
2430cbf47f92313224aaf57c799e14ccd113114c | diff --git a/treeherder/etl/pushlog.py b/treeherder/etl/pushlog.py
index <HASH>..<HASH> 100644
--- a/treeherder/etl/pushlog.py
+++ b/treeherder/etl/pushlog.py
@@ -8,8 +8,7 @@ from treeherder.client import TreeherderResultSetCollection
from treeherder.etl.common import (generate_revision_hash,
... | Bug <I> - Remove unused GitPushlogProcess/GitPushlogTransformerMixin
We don't ingest from Git ourselves at the moment and may never do so. | mozilla_treeherder | train |
a21f139f0fbf5202943bc3e818d121b4ea4a09e9 | diff --git a/jsonapi/data_structs.go b/jsonapi/data_structs.go
index <HASH>..<HASH> 100644
--- a/jsonapi/data_structs.go
+++ b/jsonapi/data_structs.go
@@ -58,6 +58,12 @@ type Link struct {
// UnmarshalJSON marshals a string value into the Href field or marshals an
// object value into the whole struct.
func (l *Link... | Support links with null values (#<I>)
* Support links with null values | manyminds_api2go | train |
c0ab432748cd92ef6ee1776c2e783696c5d7da36 | diff --git a/src/Commands/Seat/Admin/Maintenance.php b/src/Commands/Seat/Admin/Maintenance.php
index <HASH>..<HASH> 100644
--- a/src/Commands/Seat/Admin/Maintenance.php
+++ b/src/Commands/Seat/Admin/Maintenance.php
@@ -53,4 +53,4 @@ class Maintenance extends Command
dispatch((new MaintenanceJob))->onQueue('m... | Apply fixes from StyleCI (#<I>) | eveseat_console | train |
d3f67d030f421b248660e0dfc57790396b877d73 | diff --git a/src/components/PlacementResult.js b/src/components/PlacementResult.js
index <HASH>..<HASH> 100644
--- a/src/components/PlacementResult.js
+++ b/src/components/PlacementResult.js
@@ -12,6 +12,8 @@ type PlacementResultProps = {
imageUrl: string | null;
/** The raw html markup to display. Optional. */
... | bug/PLAT-<I> : Ensure javascript is rendered when adding promotions with markup | attivio_suit | train |
ed95c830367585ec70b392ad242d51d2c4eca97c | diff --git a/es/components/SelectField.js b/es/components/SelectField.js
index <HASH>..<HASH> 100644
--- a/es/components/SelectField.js
+++ b/es/components/SelectField.js
@@ -19,7 +19,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
var selectFieldMap = (0, _mapError.customMap)(f... | Convert undefined to null to fix the allowClear option of Select fields | zmitry_redux-form-antd | train |
e22f2eec8517ecae291903952fc6772f12b02195 | diff --git a/test/02-features/02-add_new_bundle.js b/test/02-features/02-add_new_bundle.js
index <HASH>..<HASH> 100644
--- a/test/02-features/02-add_new_bundle.js
+++ b/test/02-features/02-add_new_bundle.js
@@ -145,33 +145,36 @@ AddBundle = function(conf, exports) {
}
} else if (srcStats... | add checked contains for TU add bundle | Rhinostone_gina | train |
13a342ab0d486b8fa6c70380523e630cbd727930 | diff --git a/actor/stream.go b/actor/stream.go
index <HASH>..<HASH> 100644
--- a/actor/stream.go
+++ b/actor/stream.go
@@ -27,11 +27,6 @@ type SelectionRequest struct {
sendCreatedActor chan<- CreatedActor
}
-func (r SelectionRequest) closeResultChannels() {
- close(r.sendSelectedActor)
- close(r.sendCreatedActor... | [filu/actor] remove closing result channels of a request
This is to avoid a race condition when selecting over the possible
result types of a request. | ghthor_filu | train |
7b6e983b88ffefb38ac4162a7fd65f7dab5bc783 | diff --git a/src/Core/Framework/Api/Controller/AccessKeyController.php b/src/Core/Framework/Api/Controller/AccessKeyController.php
index <HASH>..<HASH> 100644
--- a/src/Core/Framework/Api/Controller/AccessKeyController.php
+++ b/src/Core/Framework/Api/Controller/AccessKeyController.php
@@ -44,4 +44,14 @@ class AccessKe... | NEXT-<I> - Add API route to generate product export access key. | shopware_platform | train |
6e52e24f53db8686fda4623693c3c3de408480e9 | diff --git a/lib/authentication/index.js b/lib/authentication/index.js
index <HASH>..<HASH> 100644
--- a/lib/authentication/index.js
+++ b/lib/authentication/index.js
@@ -2,7 +2,7 @@
const jwt = require('jsonwebtoken');
const Promise = require('promiscuous');
-const Error = require('../error')().error;
+const Error... | Fix tests and auth for the new syntax | Testlio_lambda-foundation | train |
c07ccc1d0f0a98721e64e74b0c99c7503f920eca | diff --git a/admin/jqadm/templates/service/item-price-standard.php b/admin/jqadm/templates/service/item-price-standard.php
index <HASH>..<HASH> 100644
--- a/admin/jqadm/templates/service/item-price-standard.php
+++ b/admin/jqadm/templates/service/item-price-standard.php
@@ -80,7 +80,7 @@ $enc = $this->encoder();
... | Hide service fields that are seldomly used | aimeos_ai-admin-jqadm | train |
1934e7fbcdc52c650da2a9bf8a2874c62129aa58 | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -159,7 +159,9 @@ gulp.task('build', function (done) {
});
function _replaceVersionInFile(filename) {
- return `<(sed -e 's/@VERSION/${VERSION}/g' '${filename}')`;
+ var updatedFile = fs.readFileSync(filenam... | Allow JSDocs to be built on Windows system (#<I>)
* 'sed' is not available on Windows
* 'sed' is not available on windows
* Move version interpolation in docs | braintree_braintree-web-drop-in | train |
828d912181abe73e4f2861e02d5b9f53462301ad | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -41,7 +41,7 @@ module.exports = (options = {}) => {
fs.exists(filePath, (exists) => {
if (!exists) {
- deferred.reject(new Error(`File ${filePath} does not exist`));
+ deferr... | feat: do not fail if banner file does not exist | mjeanroy_rollup-plugin-license | train |
60c5665a3e7998e83caf29b31fd4a0468e25e127 | diff --git a/utils/qfragment/qfragment/subject_verb_agreement.py b/utils/qfragment/qfragment/subject_verb_agreement.py
index <HASH>..<HASH> 100644
--- a/utils/qfragment/qfragment/subject_verb_agreement.py
+++ b/utils/qfragment/qfragment/subject_verb_agreement.py
@@ -11,7 +11,13 @@ ACCEPTABLE_STRUCTURES = [
'NN--VB... | fixes all known false positives; we prefer to miss a possible error over marking a correct sentence false | empirical-org_Quill-NLP-Tools-and-Datasets | train |
8ca7aaeb5ddf18003103adf6531f50f21f651686 | diff --git a/client/state/post-types/test/reducer.js b/client/state/post-types/test/reducer.js
index <HASH>..<HASH> 100644
--- a/client/state/post-types/test/reducer.js
+++ b/client/state/post-types/test/reducer.js
@@ -2,7 +2,6 @@
* External dependencies
*/
import { expect } from 'chai';
-import sinon from 'sinon'... | State: Use useSandbox test helper for stubbing console | Automattic_wp-calypso | train |
03d0460f2bc2e070a504082c9785e6aafe126114 | diff --git a/spyderplugins/widgets/pylintgui.py b/spyderplugins/widgets/pylintgui.py
index <HASH>..<HASH> 100644
--- a/spyderplugins/widgets/pylintgui.py
+++ b/spyderplugins/widgets/pylintgui.py
@@ -36,11 +36,18 @@ from spyderlib.widgets.onecolumntree import OneColumnTree
from spyderlib.widgets.texteditor import TextE... | Backport changes to use the right Pylint executable name for Python 3 and Linux
- Also use this name to get the pylint version | spyder-ide_spyder | train |
b348c5941294e4df89ced5ed81a4f7d635666e5b | diff --git a/internal/services/mssql/helper/sql_retention_policies.go b/internal/services/mssql/helper/sql_retention_policies.go
index <HASH>..<HASH> 100644
--- a/internal/services/mssql/helper/sql_retention_policies.go
+++ b/internal/services/mssql/helper/sql_retention_policies.go
@@ -67,7 +67,7 @@ func ShortTermReten... | fix ShortTermRetentionPolicy retention_days (#<I>) | terraform-providers_terraform-provider-azurerm | train |
b667eca578464e4f93309664f82280aecda7d19c | diff --git a/sidebars.js b/sidebars.js
index <HASH>..<HASH> 100644
--- a/sidebars.js
+++ b/sidebars.js
@@ -226,10 +226,10 @@ module.exports = {
label: 'Adding Features to Custom Expectations',
items: [
'guides/expectations/advanced/how_to_add_comments_to_expect... | removing renderer docs from sidebar (#<I>) | great-expectations_great_expectations | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.