hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
4d1121c7375c3959a4a96ca6d0f2614b0744d39d | diff --git a/src/main/java/org/fuin/srcgen4j/core/velocity/IncrementalFileHandler.java b/src/main/java/org/fuin/srcgen4j/core/velocity/IncrementalFileHandler.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/fuin/srcgen4j/core/velocity/IncrementalFileHandler.java
+++ b/src/main/java/org/fuin/srcgen4j/core/veloci... | Null pointers should not be dereferenced | fuinorg_srcgen4j-core | train |
c92a56dc937dc414139e2bff958190cfb18de5d9 | diff --git a/tests/basics/try2.py b/tests/basics/try2.py
index <HASH>..<HASH> 100644
--- a/tests/basics/try2.py
+++ b/tests/basics/try2.py
@@ -21,3 +21,20 @@ try:
bar()
except NameError:
print("except 1")
+
+# Check that exceptions across function boundaries work as expected
+def func1():
+ try:
+ ... | Add testcase with exception handler spread across functions. | micropython_micropython | train |
577cac956b25b2692f6bea947d38500363bf30ee | diff --git a/yt_array.py b/yt_array.py
index <HASH>..<HASH> 100644
--- a/yt_array.py
+++ b/yt_array.py
@@ -847,7 +847,7 @@ class YTArray(np.ndarray):
@return_arr
def prod(self, axis=None, dtype=None, out=None):
- if axis:
+ if axis is not None:
units = self.units**self.shape[axis]... | Fixing a big bug in the prod function. Truthiness hurts.
--HG--
branch : yt-<I> | yt-project_unyt | train |
d1d2a98ce6f81434be9241496d4ce670497d1e44 | diff --git a/src/cr/cube/crunch_cube.py b/src/cr/cube/crunch_cube.py
index <HASH>..<HASH> 100644
--- a/src/cr/cube/crunch_cube.py
+++ b/src/cr/cube/crunch_cube.py
@@ -1126,9 +1126,21 @@ class CrunchCube(DataTable):
return res
- def scale_means(self):
+ def scale_means(self, hs_dims=None):
''... | Support H&S in ScaleMeans | Crunch-io_crunch-cube | train |
383159a8c387db27c6ac162425a2f3a8f87afdf2 | diff --git a/lib/neo4j/active_node/query/query_proxy.rb b/lib/neo4j/active_node/query/query_proxy.rb
index <HASH>..<HASH> 100644
--- a/lib/neo4j/active_node/query/query_proxy.rb
+++ b/lib/neo4j/active_node/query/query_proxy.rb
@@ -79,7 +79,7 @@ module Neo4j
# To add a relationship for the node for the associ... | Change QueryProxy#associate to #create and allow for creating of relationships with persisted/unpersisted nodes/arrays of nodes | neo4jrb_neo4j | train |
b9b8c8eebc65cd6c7e01efa15bd3fd7b88b92cb2 | diff --git a/test/app_root/config/environment.rb b/test/app_root/config/environment.rb
index <HASH>..<HASH> 100644
--- a/test/app_root/config/environment.rb
+++ b/test/app_root/config/environment.rb
@@ -11,4 +11,4 @@ Rails::Initializer.run do |config|
end
end
) unless defined?(PluginTestHelper::PluginLoc... | Removed unnecessary online-mode-set in test env | DavidMikeSimon_offroad | train |
d5d8645712d41440195f1e951ab74d52fc0a1762 | diff --git a/src/Parse.php b/src/Parse.php
index <HASH>..<HASH> 100644
--- a/src/Parse.php
+++ b/src/Parse.php
@@ -109,16 +109,27 @@ class Parse
private function getExpiration(): int
{
- return $this->jsonDecode($this->encode->decode(
- $this->getPayload()
- ))['exp'] ?? $this->erro... | Fixed returning void issue in Parse class flagged by PHPStan. | RobDWaller_ReallySimpleJWT | train |
e9b9ea994e5c8d7a585d0e41022ea5231aa576e8 | diff --git a/lib/muack/spy.rb b/lib/muack/spy.rb
index <HASH>..<HASH> 100644
--- a/lib/muack/spy.rb
+++ b/lib/muack/spy.rb
@@ -10,9 +10,7 @@ module Muack
# used for Muack::Session#verify
def __mock_verify
- @stub.__mock_disps.values.flatten.each do |defi|
- __mock_dispatch(defi.msg, defi.args) i... | introduce __mock_dispatch_spy | godfat_muack | train |
3d2033bec3c0272165bb41bc4c3226b2396c3130 | diff --git a/pandas/tests/scalar/timedelta/test_timedelta.py b/pandas/tests/scalar/timedelta/test_timedelta.py
index <HASH>..<HASH> 100644
--- a/pandas/tests/scalar/timedelta/test_timedelta.py
+++ b/pandas/tests/scalar/timedelta/test_timedelta.py
@@ -14,7 +14,6 @@ from pandas._libs.tslibs import (
iNaT,
)
from p... | CI: Skip test_round_sanity tests due to failures (#<I>) | pandas-dev_pandas | train |
48600dcb20ec349d308b961c0f2276f290cf2def | diff --git a/test/sauceLaunchers.js b/test/sauceLaunchers.js
index <HASH>..<HASH> 100644
--- a/test/sauceLaunchers.js
+++ b/test/sauceLaunchers.js
@@ -34,5 +34,15 @@ module.exports = {
browserName: 'internet explorer',
platform: 'Windows 8.1',
version: '11'
+ },
+ sl_opera_12: {
+ base: 'SauceLabs',... | Adding Opera to sauce. Fixing test.
Fixes #<I> | reflux_refluxjs | train |
d6bbf2c7db19bc984da4790dd569f8cb19b2dffe | diff --git a/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleAgent.java b/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleAgent.java
index <HASH>..<HASH> 100644
--- a/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleAgent.java
+++ b/aeron-cluster/src/main/java/io/aeron/cluster/Consens... | [Java] When replaying new leadership term event the recording log should use event timestamp rather than current time. | real-logic_aeron | train |
f5fb0ceaa48937bab65a5979bc0daa878a1027f0 | diff --git a/src/services/popup.js b/src/services/popup.js
index <HASH>..<HASH> 100644
--- a/src/services/popup.js
+++ b/src/services/popup.js
@@ -37,7 +37,7 @@ ngeo.Popup = function($compile, $rootScope) {
* @type {angular.Scope}
* @private
*/
- this.scope_ = $rootScope.$new();
+ this.scope_ = $rootScope... | Use an isolate scope in popup service | camptocamp_ngeo | train |
0fd785e2f6ed2ddc16d7be1d5694788dcc798086 | diff --git a/src/Fixer/FunctionNotation/RegularCallableCallFixer.php b/src/Fixer/FunctionNotation/RegularCallableCallFixer.php
index <HASH>..<HASH> 100644
--- a/src/Fixer/FunctionNotation/RegularCallableCallFixer.php
+++ b/src/Fixer/FunctionNotation/RegularCallableCallFixer.php
@@ -54,7 +54,7 @@ call_user_func(static f... | Update src/Fixer/FunctionNotation/RegularCallableCallFixer.php | FriendsOfPHP_PHP-CS-Fixer | train |
05fc5c2a9c34037a5ebcba0bcb96d001077e5bb4 | diff --git a/workbench/server/data_store.py b/workbench/server/data_store.py
index <HASH>..<HASH> 100644
--- a/workbench/server/data_store.py
+++ b/workbench/server/data_store.py
@@ -290,6 +290,10 @@ class DataStore(object):
results['md5'] = md5
results['__time_stamp'] = datetime.datetime.utcnow()
+... | if data being added to the database doesn't have a mod_time add one | SuperCowPowers_workbench | train |
06d252b5824591f7eea29f48fbde33f8d7fd981f | diff --git a/contrib/ec2-testing/test/voldemort/utils/Ec2SmokeTest.java b/contrib/ec2-testing/test/voldemort/utils/Ec2SmokeTest.java
index <HASH>..<HASH> 100644
--- a/contrib/ec2-testing/test/voldemort/utils/Ec2SmokeTest.java
+++ b/contrib/ec2-testing/test/voldemort/utils/Ec2SmokeTest.java
@@ -18,7 +18,6 @@ package vol... | Fixed fatal issue wherein all instances for a given Amazon account would be used and then terminated at the end of the tests. | voldemort_voldemort | train |
c0cfc9c50747836e86685ae2e8b42af64748afdd | diff --git a/cmd/admin-service-restart.go b/cmd/admin-service-restart.go
index <HASH>..<HASH> 100644
--- a/cmd/admin-service-restart.go
+++ b/cmd/admin-service-restart.go
@@ -95,7 +95,7 @@ func (s serviceRestartMessage) JSON() string {
// checkAdminServiceRestartSyntax - validate all the passed arguments
func check... | Fix usage validation in `mc admin service restart` (#<I>)
The command needs exactly one argument, but was allowing two and
ignoring the second if passed. Fixed the validation. | minio_mc | train |
e7cfcdc2d592aed178913e192b608b67716cc118 | diff --git a/spec/authy/api_spec.rb b/spec/authy/api_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/authy/api_spec.rb
+++ b/spec/authy/api_spec.rb
@@ -206,7 +206,7 @@ describe "Authy::API" do
it "should be ok" do
response = Authy::API.delete_user(id: @user.id)
- expect(response.message).to eq "... | Fixed tests, un-pending-ified tests that now pass | twilio_authy-ruby | train |
e3fb873c9b1a93bc252d45fbff125f5396e50b29 | diff --git a/lib/objects/registry/command/group.rb b/lib/objects/registry/command/group.rb
index <HASH>..<HASH> 100644
--- a/lib/objects/registry/command/group.rb
+++ b/lib/objects/registry/command/group.rb
@@ -66,7 +66,7 @@ module Bcome::Registry::Command
puts tab_spacing + ("\s" * menu_item_spacing_length)... | BUGFIX: Registry was incorrectly explaining how to override defaults arguments when invoking a command | webzakimbo_bcome-kontrol | train |
77bbf1e905f2ff82d715bac3f0b255cf3ade1d97 | diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -26,7 +26,7 @@
class ApiTest < ActionDispatch::IntegrationTest
test 'creates articles' do
assert_difference -> { Article.count } do
- po... | Make `parsed_body` extract parser from the content type.
We're not guaranteed to have a `RequestEncoder` to assign on `get` requests
because we aren't extracting the parser from the response content type.
Until now. | rails_rails | train |
a762253e24c8c0bc446c4e94ee0f310198927567 | diff --git a/state/txindex/kv/kv.go b/state/txindex/kv/kv.go
index <HASH>..<HASH> 100644
--- a/state/txindex/kv/kv.go
+++ b/state/txindex/kv/kv.go
@@ -84,12 +84,23 @@ func (txi *TxIndex) AddBatch(b *txindex.Batch) error {
// Index indexes a single transaction using the given list of tags.
func (txi *TxIndex) Index(... | do not use AddBatch, prefer copying for now | tendermint_tendermint | train |
900b39635d710e2c6a3c7dc96ebb4e0c9e3021e8 | diff --git a/core/src/main/java/io/grpc/internal/AutoConfiguredLoadBalancerFactory.java b/core/src/main/java/io/grpc/internal/AutoConfiguredLoadBalancerFactory.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/io/grpc/internal/AutoConfiguredLoadBalancerFactory.java
+++ b/core/src/main/java/io/grpc/internal/Auto... | core: Fix java lint found during weekly import | grpc_grpc-java | train |
26a5b02c6952b87784ed7389424a4ac623d323ba | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -41,8 +41,8 @@ const config = {
dest: "dist/assets/"
},
octicons: {
- sources: "node_modules/octicons/octicons/octicons.{eot,woff,ttf,svg,css}",
- dest: "dist/as... | fix build so that it properly copies octicons based on the lib's changes to its directory structure in 4.x | jenkinsci_jenkins-design-language | train |
2ca914dc52286ee1c7f75890ecbf90fa5d6a345d | diff --git a/src/share/classes/com/sun/source/util/AbstractTypeProcessor.java b/src/share/classes/com/sun/source/util/AbstractTypeProcessor.java
index <HASH>..<HASH> 100644
--- a/src/share/classes/com/sun/source/util/AbstractTypeProcessor.java
+++ b/src/share/classes/com/sun/source/util/AbstractTypeProcessor.java
@@ -1... | Use the existing processingEnv field instead of adding another field; use casts only when the javac subtype is really needed. | wmdietl_jsr308-langtools | train |
4de8b36c902cac382c29fb4a93a8d0d75085527e | diff --git a/src/deep-resource/lib/Resource/Request.js b/src/deep-resource/lib/Resource/Request.js
index <HASH>..<HASH> 100644
--- a/src/deep-resource/lib/Resource/Request.js
+++ b/src/deep-resource/lib/Resource/Request.js
@@ -61,6 +61,7 @@ export class Request {
this._apiKey = null;
this._baseUrl = null;
+... | # Implement "retry" method for deep-request | MitocGroup_deep-framework | train |
8739e71c2fef624cbe56eb20545a108fa014fb48 | diff --git a/system/modules/generalDriver/deprecated/GeneralModelDefault.php b/system/modules/generalDriver/deprecated/GeneralModelDefault.php
index <HASH>..<HASH> 100644
--- a/system/modules/generalDriver/deprecated/GeneralModelDefault.php
+++ b/system/modules/generalDriver/deprecated/GeneralModelDefault.php
@@ -14,6 ... | Fix class name GeneralModelDefault was named GeneralDataModelDefault in deprecated folder. | contao-community-alliance_dc-general | train |
cbd0d9a4938fd2f4a9395d10a0eda3e4f5283d75 | diff --git a/src/trunkata.js b/src/trunkata.js
index <HASH>..<HASH> 100644
--- a/src/trunkata.js
+++ b/src/trunkata.js
@@ -155,7 +155,13 @@
var str = elt.nodeValue,
words = str.split(' '),
j = words.length;
- while (j--) {
+
+ // Temporarily append an... | Putting an ellipsis on the end ofthe truncation | twolfson_trunkata | train |
57b9ca9397aa5c6ca927c263c99d5c97504b2efd | diff --git a/lib/dockly/util/dsl.rb b/lib/dockly/util/dsl.rb
index <HASH>..<HASH> 100644
--- a/lib/dockly/util/dsl.rb
+++ b/lib/dockly/util/dsl.rb
@@ -14,9 +14,13 @@ module Dockly::Util::DSL
def dsl_attribute(*names)
names.each do |name|
- define_method(name) do |val = nil|
- val.nil? ? in... | Support a block as an arg | swipely_dockly-util | train |
b27534da2be077a673ca107e20c79dc3ca773f4a | diff --git a/Classes/Flowpack/ElasticSearch/ContentRepositoryAdaptor/Eel/ElasticSearchHelper.php b/Classes/Flowpack/ElasticSearch/ContentRepositoryAdaptor/Eel/ElasticSearchHelper.php
index <HASH>..<HASH> 100644
--- a/Classes/Flowpack/ElasticSearch/ContentRepositoryAdaptor/Eel/ElasticSearchHelper.php
+++ b/Classes/Flowp... | [FEATURE] exact match query | Flowpack_Flowpack.ElasticSearch.ContentRepositoryAdaptor | train |
7e2729fe645bb216b0a23f80af5b6fd5b5bc35bf | diff --git a/token.go b/token.go
index <HASH>..<HASH> 100644
--- a/token.go
+++ b/token.go
@@ -160,7 +160,15 @@ func processEnvChg(sess *tdsSession) {
}
sess.tranid = 0
default:
- badStreamPanicf("unknown env type: %d", envtype)
+ // ignore unknown env change types
+ _, err = readB... | Ignore unknown env change types Issue #<I> | denisenkom_go-mssqldb | train |
076b4d5113194d71788e88af937f83ad1cb3b84f | diff --git a/apis/connection.js b/apis/connection.js
index <HASH>..<HASH> 100644
--- a/apis/connection.js
+++ b/apis/connection.js
@@ -65,14 +65,9 @@ var addConnctionAPI = function(Modbus) {
options = {};
}
- // check for port
- if (options && options.port) {
- p... | use options dictionary in ports constractor | yaacov_node-modbus-serial | train |
e30f2808d6482a3bcfc59a13f5f8534574eebf5d | diff --git a/examples/measure-style.js b/examples/measure-style.js
index <HASH>..<HASH> 100644
--- a/examples/measure-style.js
+++ b/examples/measure-style.js
@@ -158,6 +158,8 @@ const source = new VectorSource();
const modify = new Modify({source: source, style: modifyStyle});
+let tipPoint;
+
function styleFunc... | Override modify style geometry until pointermove | openlayers_openlayers | train |
cc1af7573b7b982921212a930938d360b913d70f | diff --git a/ddl/schema.go b/ddl/schema.go
index <HASH>..<HASH> 100644
--- a/ddl/schema.go
+++ b/ddl/schema.go
@@ -61,27 +61,14 @@ func (d *ddl) onCreateSchema(t *meta.Meta, job *model.Job) error {
switch dbInfo.State {
case model.StateNone:
- // none -> delete only
- job.SchemaState = model.StateDeleteOnly
- ... | ddl: creating database/table uses public state directly. | pingcap_tidb | train |
1ab988936aaed30c293aaeefae5129a66627cce6 | diff --git a/lib/with_advisory_lock/base.rb b/lib/with_advisory_lock/base.rb
index <HASH>..<HASH> 100644
--- a/lib/with_advisory_lock/base.rb
+++ b/lib/with_advisory_lock/base.rb
@@ -54,8 +54,8 @@ module WithAdvisoryLock
end
end
- def yield_with_lock(timeout_seconds = @timeout_seconds)
- give_up_a... | fixed flock advisory_lock_exists? to use a new instance so the name construction would be correct | ClosureTree_with_advisory_lock | train |
01fdf257f6eda63f4989eca94dd04c4a46e05103 | diff --git a/src/Illuminate/Contracts/Routing/Registrar.php b/src/Illuminate/Contracts/Routing/Registrar.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Contracts/Routing/Registrar.php
+++ b/src/Illuminate/Contracts/Routing/Registrar.php
@@ -9,7 +9,7 @@ interface Registrar
*
* @param string $uri
... | Mismatched type-hints between Registrar and Router (#<I>) | laravel_framework | train |
35ea365b50bd1a64375fdbcce187affab22af3b7 | diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py
index <HASH>..<HASH> 100644
--- a/pkg_resources/__init__.py
+++ b/pkg_resources/__init__.py
@@ -1859,12 +1859,13 @@ class FileMetadata(EmptyProvider):
return name == 'PKG-INFO' and os.path.isfile(self.path)
def get_metadata(self, name):
... | Put main logic in the top-level body of the function. | pypa_setuptools | train |
6a2d9c3b28fb7f1e3ca1b68d2e146ac5a19150f0 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -2,11 +2,14 @@ import querystring from 'querystring'
import 'isomorphic-fetch' // eslint-disable-line import/no-unassigned-import
import { required, checkStatus, parseJSON } from './helpers'
+const { localS... | feat(client): save token in localstorage | Syncano_syncano-client-js | train |
96288bcf22c9ff03ca986b3984a6c3e25797e66a | diff --git a/src/SearchResults/index.js b/src/SearchResults/index.js
index <HASH>..<HASH> 100644
--- a/src/SearchResults/index.js
+++ b/src/SearchResults/index.js
@@ -74,6 +74,7 @@ function findMatchingHierarchicalFacetFromAttributeName(hierarchicalFacets, hier
);
}
+/*eslint-disable */
/**
* Constructor for S... | chore(search-results): eslintifies | algolia_algoliasearch-helper-js | train |
0a21e08f796c0b3ba1569f92fd4c222c324a1767 | diff --git a/ee/src/main/java/org/jboss/as/ee/component/ViewService.java b/ee/src/main/java/org/jboss/as/ee/component/ViewService.java
index <HASH>..<HASH> 100644
--- a/ee/src/main/java/org/jboss/as/ee/component/ViewService.java
+++ b/ee/src/main/java/org/jboss/as/ee/component/ViewService.java
@@ -190,6 +190,9 @@ publi... | WFLY-<I> Don't allow invocations into the view interceptors till the component is started | wildfly_wildfly | train |
a147bd7d8a8b89cfbbd4039851691890bbbfe7e8 | diff --git a/src/Provider/Stripe.php b/src/Provider/Stripe.php
index <HASH>..<HASH> 100644
--- a/src/Provider/Stripe.php
+++ b/src/Provider/Stripe.php
@@ -48,6 +48,16 @@ class Stripe extends AbstractProvider
}
/**
+ * Get deauthorization url to end OAuth flow
+ *
+ * @return string
+ */
+ ... | Added `deauthorize()` method | adam-paterson_oauth2-stripe | train |
726fbe22cac61eb5d87b869bb28ac299a8a6ed8c | diff --git a/lib/endpoints/class-wp-rest-posts-controller.php b/lib/endpoints/class-wp-rest-posts-controller.php
index <HASH>..<HASH> 100755
--- a/lib/endpoints/class-wp-rest-posts-controller.php
+++ b/lib/endpoints/class-wp-rest-posts-controller.php
@@ -1327,12 +1327,14 @@ class WP_REST_Posts_Controller extends WP_RES... | Add `readonly` attribute to the modified dates for Posts | WP-API_WP-API | train |
b39d5357b6f457e7a0d9f014b45d11f27092823d | diff --git a/menu_launcher.py b/menu_launcher.py
index <HASH>..<HASH> 100755
--- a/menu_launcher.py
+++ b/menu_launcher.py
@@ -103,7 +103,7 @@ def run_plugins(action):
config.read(template_dir+plugin+'.template')
plugin_name = config.get("info", "name")
p['... | Fixed bug introduced with merge where Module > commands where not waiting for user to verify output. | CyberReboot_vent | train |
a5c68a03a7471ffd9780b31c7ecab982a525cc72 | diff --git a/lib/mongoid/copyable.rb b/lib/mongoid/copyable.rb
index <HASH>..<HASH> 100644
--- a/lib/mongoid/copyable.rb
+++ b/lib/mongoid/copyable.rb
@@ -23,13 +23,44 @@ module Mongoid
# @example Clone the document.
# document.clone
#
+ # @param [ Document ] other The document getting cloned.
+ ... | Refactor intialize_dup for jruby | mongodb_mongoid | train |
548842605ef4449afcde23340f28e5d526667481 | diff --git a/gwpy/astro/range.py b/gwpy/astro/range.py
index <HASH>..<HASH> 100644
--- a/gwpy/astro/range.py
+++ b/gwpy/astro/range.py
@@ -243,7 +243,7 @@ def sensemon_range(psd, snr=8, mass1=1.4, mass2=1.4, fmin=None, fmax=None,
_DEPRECATED_SENSEMON_MESSAGE = (
"the {} function currently uses the LIGO SenseMon... | gwpy.astro: update sensemon version reference | gwpy_gwpy | train |
1b723937e3fe4012ac878ded833ff6a39455e0b8 | diff --git a/py/makeqstrdefs.py b/py/makeqstrdefs.py
index <HASH>..<HASH> 100644
--- a/py/makeqstrdefs.py
+++ b/py/makeqstrdefs.py
@@ -58,7 +58,8 @@ def process_file(f):
elif args.mode == _MODE_COMPRESS:
output.append(match)
- write_out(last_fname, output)
+ if last_fname:
+ ... | py/makeqstrdefs.py: Fix beaviour when scanning non-C preprocessed files.
When process_file() is passed a preprocessed C++ file for instance it won't
find any lines containing .c files and the last_fname variable remains
None, so handle that gracefully. | micropython_micropython | train |
7150db7b51e1e590fbcd538724cb36465ef8ce66 | diff --git a/reana_commons/version.py b/reana_commons/version.py
index <HASH>..<HASH> 100755
--- a/reana_commons/version.py
+++ b/reana_commons/version.py
@@ -14,4 +14,4 @@ and parsed by ``setup.py``.
from __future__ import absolute_import, print_function
-__version__ = "0.6.0.dev20191209"
+__version__ = "0.6.0.de... | release: <I>.de<I> | reanahub_reana-commons | train |
f0d3f88a327f481f4e899a216e5d5118d687b66c | diff --git a/core/src/main/java/org/owasp/dependencycheck/data/nvdcve/CveDB.java b/core/src/main/java/org/owasp/dependencycheck/data/nvdcve/CveDB.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/owasp/dependencycheck/data/nvdcve/CveDB.java
+++ b/core/src/main/java/org/owasp/dependencycheck/data/nvdcve/CveD... | re-introduce the deletion of removed CVEs per #<I> | jeremylong_DependencyCheck | train |
55556455f6ed4a15555e1eabaa9d813739429bcc | diff --git a/Binary/Locator/FileSystemLocator.php b/Binary/Locator/FileSystemLocator.php
index <HASH>..<HASH> 100644
--- a/Binary/Locator/FileSystemLocator.php
+++ b/Binary/Locator/FileSystemLocator.php
@@ -127,13 +127,20 @@ class FileSystemLocator implements LocatorInterface
*/
private function sanitizeAbso... | add file system locator check for readable file | liip_LiipImagineBundle | train |
65c5584f3ccad24fa71e09ec551d0b41bb698cba | diff --git a/utool/util_cplat.py b/utool/util_cplat.py
index <HASH>..<HASH> 100755
--- a/utool/util_cplat.py
+++ b/utool/util_cplat.py
@@ -337,6 +337,15 @@ def set_process_title(title):
utool.printex(ex, iswarning=True)
+def is64bit_python():
+ #http://stackoverflow.com/questions/1405913/how-do-i-determ... | added test for <I> bit | Erotemic_utool | train |
fdbe62f95337283395fa511107b39c4f9ba9f5fb | diff --git a/java/client/test/org/openqa/selenium/ClickTest.java b/java/client/test/org/openqa/selenium/ClickTest.java
index <HASH>..<HASH> 100644
--- a/java/client/test/org/openqa/selenium/ClickTest.java
+++ b/java/client/test/org/openqa/selenium/ClickTest.java
@@ -78,8 +78,7 @@ public class ClickTest extends Abstract... | DanielWagnerHall: Wait, rather than assert, for the result of a click.
r<I> | SeleniumHQ_selenium | train |
89cc666212395bf277b4e160b32ad27a497d23e5 | diff --git a/app/controllers/worker_status_controller.rb b/app/controllers/worker_status_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/worker_status_controller.rb
+++ b/app/controllers/worker_status_controller.rb
@@ -20,9 +20,9 @@ class WorkerStatusController < ApplicationController
end
re... | Define some helper scopes in Delayed::Job for worker status API. | huginn_huginn | train |
e8d01de0606eb7fc5f73c6e1c896eea788f76197 | diff --git a/src/picker/PickerColumn.js b/src/picker/PickerColumn.js
index <HASH>..<HASH> 100644
--- a/src/picker/PickerColumn.js
+++ b/src/picker/PickerColumn.js
@@ -140,9 +140,14 @@ export default createComponent({
}
const index = this.getIndexByOffset(this.offset);
- this.moving = false;
... | fix(Picker): compatible with desktop scenario (#<I>) | youzan_vant | train |
cde7d82391fd9c08493448ac0945c4be13245773 | diff --git a/src/PHPMailer.php b/src/PHPMailer.php
index <HASH>..<HASH> 100644
--- a/src/PHPMailer.php
+++ b/src/PHPMailer.php
@@ -4526,11 +4526,15 @@ class PHPMailer
$privKey = openssl_pkey_get_private($privKeyStr);
}
if (openssl_sign($signHeader, $signature, $privKey, 'sha256WithRSAEncr... | Wrap calls to openssl_pkey_free in version checks, fixes #<I> | PHPMailer_PHPMailer | train |
156cb0c426073330203c829a2776af6e48a9555e | diff --git a/querydsl-core/src/main/java/com/querydsl/core/support/ReplaceVisitor.java b/querydsl-core/src/main/java/com/querydsl/core/support/ReplaceVisitor.java
index <HASH>..<HASH> 100644
--- a/querydsl-core/src/main/java/com/querydsl/core/support/ReplaceVisitor.java
+++ b/querydsl-core/src/main/java/com/querydsl/co... | Replace occurrence of java.util.Objects with com.google.common.base.Objects
The former is not available on JDK6.
fixes #<I> | querydsl_querydsl | train |
2b24527af9fd458adcc74f323b4c8728e6d42473 | diff --git a/test/unit/test_docstring.rb b/test/unit/test_docstring.rb
index <HASH>..<HASH> 100644
--- a/test/unit/test_docstring.rb
+++ b/test/unit/test_docstring.rb
@@ -3,6 +3,8 @@ require 'helper.rb'
require "yard"
require "yard-tomdoc"
+if YARD::VERSION < '0.8'
+
describe YARD::Docstring do
before do
@@ -... | Current test only works for pre <I> versions of YARD. [test] | rubyworks_yard-tomdoc | train |
1a29bca954ca9dd5355f3a050d215aa286c36bb8 | diff --git a/lib/spider-gazelle/connection.rb b/lib/spider-gazelle/connection.rb
index <HASH>..<HASH> 100644
--- a/lib/spider-gazelle/connection.rb
+++ b/lib/spider-gazelle/connection.rb
@@ -8,6 +8,7 @@ module SpiderGazelle
RACK = 'rack'.freeze # used for filtering headers
CLOSE = "close".f... | don't send content-length header for chunked responses | cotag_spider-gazelle | train |
f79936c10459c5982bf64ac4cc1532019f194596 | diff --git a/templates/Angular2Spa/webpack.config.js b/templates/Angular2Spa/webpack.config.js
index <HASH>..<HASH> 100644
--- a/templates/Angular2Spa/webpack.config.js
+++ b/templates/Angular2Spa/webpack.config.js
@@ -10,8 +10,8 @@ module.exports = {
module: {
loaders: [
{ test: /\.ts$/, inc... | In Angular2Spa webpack config, allow html/css files from node_modules to be loaded via Webpack. | aspnet_JavaScriptServices | train |
8d3df1b4b88467611b0729ac6d8428fce7677d79 | diff --git a/ci/images/releasescripts/src/main/java/io/spring/concourse/releasescripts/artifactory/ArtifactoryService.java b/ci/images/releasescripts/src/main/java/io/spring/concourse/releasescripts/artifactory/ArtifactoryService.java
index <HASH>..<HASH> 100644
--- a/ci/images/releasescripts/src/main/java/io/spring/co... | Make CI credentials requirement lenient when building RestTemplate
Fixes gh-<I> | spring-projects_spring-boot | train |
6274d5a8e5e4f5e25cf01f5c6c45d81bd36380a5 | diff --git a/lib/escobar/heroku/pipeline.rb b/lib/escobar/heroku/pipeline.rb
index <HASH>..<HASH> 100644
--- a/lib/escobar/heroku/pipeline.rb
+++ b/lib/escobar/heroku/pipeline.rb
@@ -56,6 +56,14 @@ module Escobar
end
end
+ def default_branch
+ github_client.default_branch
+ end
+
+ ... | expose default branch and required contexts on pipelines | atmos_escobar | train |
b9b89707f14444a30ef17b26e6da30d366f293af | diff --git a/lib/app.js b/lib/app.js
index <HASH>..<HASH> 100644
--- a/lib/app.js
+++ b/lib/app.js
@@ -80,8 +80,8 @@ module.exports = {
});
},
- search: function(needle, cb){
- refs.appstore.orderByChild('meta/name')
+ search: function(needle, cb){
+ refs.appstore.orderByChild('meta/name')
.... | Fix validate if in firebase visible is equal | matrix-io_matrix-firebase | train |
6e9c8533121528bb27daee97a68c06b2f637f872 | diff --git a/cmd/xl-sets.go b/cmd/xl-sets.go
index <HASH>..<HASH> 100644
--- a/cmd/xl-sets.go
+++ b/cmd/xl-sets.go
@@ -131,6 +131,31 @@ func findDiskIndex(refFormat, format *formatXLV3) (int, int, error) {
return -1, -1, fmt.Errorf("diskID: %s not found", format.XL.This)
}
+// connectDisks - attempt to connect all... | After healing re-load disks with the new format (#<I>)
This PR also fixes correct calculation of drive states
before and after healing of objects.
Fixes #<I>
Fixes #<I> | minio_minio | train |
7ed732866b92f345809c9cb45d9fe06673a4ec80 | diff --git a/pythran/tests/test_numpy_random.py b/pythran/tests/test_numpy_random.py
index <HASH>..<HASH> 100644
--- a/pythran/tests/test_numpy_random.py
+++ b/pythran/tests/test_numpy_random.py
@@ -353,7 +353,7 @@ class TestNumpyRandom(TestEnv):
lam = 10
a = poisson(lam, size)
pr... | Be more permissive with randomness tests | serge-sans-paille_pythran | train |
0d4a695279c514c76aa0e9288c70ac7aaef91b03 | diff --git a/python/pyspark/ml/classification.py b/python/pyspark/ml/classification.py
index <HASH>..<HASH> 100644
--- a/python/pyspark/ml/classification.py
+++ b/python/pyspark/ml/classification.py
@@ -981,7 +981,7 @@ class GBTClassificationModel(TreeEnsembleModel, JavaPredictionModel, JavaMLWrita
@inherit_doc
cla... | [SPARK-<I>][ML][PYSPARK] update NB python api - add weight col parameter
## What changes were proposed in this pull request?
update python api for NaiveBayes: add weight col parameter.
## How was this patch tested?
doctests added. | apache_spark | train |
bc25e3026e69fc2013070c312b75e96667a02908 | diff --git a/ast/policy.go b/ast/policy.go
index <HASH>..<HASH> 100644
--- a/ast/policy.go
+++ b/ast/policy.go
@@ -370,6 +370,15 @@ func (body Body) Vars(skipClosures bool) VarSet {
return vis.vars
}
+// NewExpr returns a new Expr object.
+func NewExpr(terms interface{}) *Expr {
+ return &Expr{
+ Negated: false,
... | Add constructors for Term and Expr | open-policy-agent_opa | train |
f610db23a664ef0535ededb277c95ee8a44e796f | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -2,7 +2,7 @@
* grunt-contrib-jade
* http://gruntjs.com/
*
- * Copyright (c) 2013 Eric Woroshow, contributors
+ * Copyright (c) 2014 Eric Woroshow, contributors
* Licensed under the MIT license.
*/
d... | Update copyright to <I> | gruntjs_grunt-contrib-pug | train |
c82a83cde26138a11376aca9510185f995d43497 | diff --git a/lib/review/webmaker.rb b/lib/review/webmaker.rb
index <HASH>..<HASH> 100644
--- a/lib/review/webmaker.rb
+++ b/lib/review/webmaker.rb
@@ -118,7 +118,7 @@ module ReVIEW
copy_backmatter(@path)
math_dir = "./#{@config['imagedir']}/_review_math"
- if @config['imgmath'] && File.exist?("#{ma... | fix webmaker didn't create math images caused by #<I> | kmuto_review | train |
49baf38871ea36207e9b24b61b45bba11eb41c00 | diff --git a/dvc/state.py b/dvc/state.py
index <HASH>..<HASH> 100644
--- a/dvc/state.py
+++ b/dvc/state.py
@@ -96,7 +96,20 @@ class State(object):
@staticmethod
def mtime(path):
- return str(int(nanotime.timestamp(os.path.getmtime(path))))
+ if os.path.isdir(path):
+ mtime = -1
+ ... | dvc: properly compute mtime for the directory
Fixes #<I> | iterative_dvc | train |
9e93c6a43bbd9e5e35e8ed514bb83ed6c0417b32 | diff --git a/app/models/peoplefinder/email_address.rb b/app/models/peoplefinder/email_address.rb
index <HASH>..<HASH> 100644
--- a/app/models/peoplefinder/email_address.rb
+++ b/app/models/peoplefinder/email_address.rb
@@ -48,11 +48,15 @@ private
attr_reader :valid_login_domains
def globally_addressable_domain?... | Use a single regular expression to check domain
Personally, I think this expresses the intention more clearly, but I
know it's a matter of opinion. | ministryofjustice_peoplefinder | train |
d8a6561de1d15b160f46a878570e03342b249f11 | diff --git a/gossip/src/main/java/com/socklabs/elasticservices/gossip/GossipService.java b/gossip/src/main/java/com/socklabs/elasticservices/gossip/GossipService.java
index <HASH>..<HASH> 100644
--- a/gossip/src/main/java/com/socklabs/elasticservices/gossip/GossipService.java
+++ b/gossip/src/main/java/com/socklabs/ela... | Code refactoring and cleanup in gossip service to support online and status messages. | ngerakines_elasticservices | train |
689d533c60572e256418dcacd01840a0f84666c0 | diff --git a/rqalpha/model/snapshot.py b/rqalpha/model/snapshot.py
index <HASH>..<HASH> 100644
--- a/rqalpha/model/snapshot.py
+++ b/rqalpha/model/snapshot.py
@@ -18,7 +18,7 @@ import six
import datetime
import numpy as np
-from rqalpha.utils.datetime_func import convert_int_to_datetime
+from rqalpha.utils.datetime... | let snapshot datetime support ms | ricequant_rqalpha | train |
e718a9f4058d44b3b56dc6e1752b1e8c95255e2d | diff --git a/openquake/commonlib/tests/source_test.py b/openquake/commonlib/tests/source_test.py
index <HASH>..<HASH> 100644
--- a/openquake/commonlib/tests/source_test.py
+++ b/openquake/commonlib/tests/source_test.py
@@ -17,6 +17,7 @@
# along with OpenQuake. If not, see <http://www.gnu.org/licenses/>.
import os
+... | Added a test of error in filtering
Former-commit-id: e<I>ca<I>e3ebca<I>b9c1e9fee<I>f5a<I> | gem_oq-engine | train |
bf2dacd320abd96ec2959f363414d84823e35fd9 | diff --git a/lib/rails_autoscale_agent/collector.rb b/lib/rails_autoscale_agent/collector.rb
index <HASH>..<HASH> 100644
--- a/lib/rails_autoscale_agent/collector.rb
+++ b/lib/rails_autoscale_agent/collector.rb
@@ -16,6 +16,8 @@ module RailsAutoscaleAgent
logger.info "Collected queue_time=#{queue_time_millis... | Add queue_time to env | adamlogic_rails_autoscale_agent | train |
5dfbe7863704a4244486c536120598f714f9e612 | diff --git a/txtwitter/tests/fake_twitter.py b/txtwitter/tests/fake_twitter.py
index <HASH>..<HASH> 100644
--- a/txtwitter/tests/fake_twitter.py
+++ b/txtwitter/tests/fake_twitter.py
@@ -648,15 +648,15 @@ class FakeTwitterAPI(object):
dms = [dm for dm in dms if int(dm.id_str) <= max_id]
dms = so... | Change FakeTwitterAPI.direct_messages to limit its messages to the <I> most recent | jerith_txTwitter | train |
86d0a76f5de88ffb6bdd9562ac411f86f21e4aa7 | diff --git a/lib/fluent/command/fluentd.rb b/lib/fluent/command/fluentd.rb
index <HASH>..<HASH> 100644
--- a/lib/fluent/command/fluentd.rb
+++ b/lib/fluent/command/fluentd.rb
@@ -102,9 +102,7 @@ op.on('-q', '--quiet', "decrease verbose level (-q: warn, -qq: error)", TrueClas
}
op.on('-u', '--usespwan', "*** interna... | $usespawn is changed to a member of Supervisor. | fluent_fluentd | train |
5671b13fcfcc88169c33cf30ba5757b1548d0d38 | diff --git a/upload/catalog/controller/payment/g2apay.php b/upload/catalog/controller/payment/g2apay.php
index <HASH>..<HASH> 100644
--- a/upload/catalog/controller/payment/g2apay.php
+++ b/upload/catalog/controller/payment/g2apay.php
@@ -40,7 +40,7 @@ class ControllerPaymentG2APay extends Controller {
$item = n... | Fixes #<I> Item amount was to three decimal places whereas order total was to two decimal places, under certain conditions this meant items total was different to order total causing error on G2A | opencart_opencart | train |
8d003120deb141b94335a93a7a9a2034f452eb20 | diff --git a/src/endpoints/customers.js b/src/endpoints/customers.js
index <HASH>..<HASH> 100644
--- a/src/endpoints/customers.js
+++ b/src/endpoints/customers.js
@@ -15,6 +15,15 @@ class CustomersEndpoint extends BaseExtend {
return this.request.send(`${this.endpoint}/${id}`, 'DELETE');
}
+ Token(email, pas... | feat: Customer tokens (#<I>)
* test: Failing test for customers token method
* feat: Add token method to customers class
Accepts email, password parameters. Returns a JWT.
Fixes moltin/workflow#<I>
* style(eslint): Fixing some linting
* test: Adding attribute to body for expected request
* fix: Use c... | moltin_js-sdk | train |
3cd5f370971583d28f92e7064f6ecd4986334a78 | diff --git a/server/data_adapter/rest_adapter.js b/server/data_adapter/rest_adapter.js
index <HASH>..<HASH> 100644
--- a/server/data_adapter/rest_adapter.js
+++ b/server/data_adapter/rest_adapter.js
@@ -86,6 +86,7 @@ RestAdapter.prototype.request = function(req, api, options, callback) {
if (typeof body === 'strin... | Should throw an error <I> if body is null | rendrjs_rendr | train |
ce8829f5ba28ba16886072a6a72aba06fc92281d | diff --git a/cf/commands/curl.go b/cf/commands/curl.go
index <HASH>..<HASH> 100644
--- a/cf/commands/curl.go
+++ b/cf/commands/curl.go
@@ -41,13 +41,13 @@ func (cmd *Curl) MetaData() commandregistry.CommandMetadata {
fs["H"] = &flags.StringSliceFlag{ShortName: "H", Usage: T("Custom headers to include in the request, ... | Fix usage text for cf curl
The previous usage text for cf curl -f/--fail was incorrect. This
updates the usage and the corresponding integration tests.
[#<I>, #<I>] | cloudfoundry_cli | train |
2e1810fa3b128999ada94a6a6d988212f213acc6 | diff --git a/src/js/Renderer.js b/src/js/Renderer.js
index <HASH>..<HASH> 100644
--- a/src/js/Renderer.js
+++ b/src/js/Renderer.js
@@ -868,8 +868,10 @@ define([
//06. handle(control selection, ...)
$(tplHandles()).prependTo($editor);
+ var $dialogContainer = options.dialogsInBody ? document.body : ... | apply modal dialogs into document.body | summernote_summernote | train |
5586a0a8e25f0a0dd0cc45460558927e21b69c7e | diff --git a/hortonmachine/src/main/java/org/jgrasstools/hortonmachine/modules/networktools/epanet/EpanetFeaturesSynchronizer.java b/hortonmachine/src/main/java/org/jgrasstools/hortonmachine/modules/networktools/epanet/EpanetFeaturesSynchronizer.java
index <HASH>..<HASH> 100644
--- a/hortonmachine/src/main/java/org/jgr... | fix for the dummy pipes error | TheHortonMachine_hortonmachine | train |
a21c78ac3d6dcdf9eecbd358e2ae1922cc6c4adc | diff --git a/state/upgrades_test.go b/state/upgrades_test.go
index <HASH>..<HASH> 100644
--- a/state/upgrades_test.go
+++ b/state/upgrades_test.go
@@ -4304,6 +4304,33 @@ func (s *upgradesSuite) TestAddMachineIDToSubordinates(c *gc.C) {
s.assertUpgradedData(c, AddMachineIDToSubordinates, upgradedData(col, expected))
... | Add a test for the upgrade step.
The default database setup won't contain a presence database,
so we start by inserting a document into a collection. | juju_juju | train |
33bf84536840ab040a68ecd672de601f45adc090 | diff --git a/saspy/sasiostdio.py b/saspy/sasiostdio.py
index <HASH>..<HASH> 100644
--- a/saspy/sasiostdio.py
+++ b/saspy/sasiostdio.py
@@ -1223,7 +1223,7 @@ Will use HTML5 for this SASsession.""")
sock.listen(1)
self._asubmit(code, 'text')
- if sel.select([sock],[],[],100)[0] == []:
+ if sel.s... | catch socket shutdown exception during failure so we get log | sassoftware_saspy | train |
dfc0b5a72cf50d4944d1c68d6a2af7f7e91bfb86 | diff --git a/gui/src/main/java/org/jboss/as/console/client/domain/hosts/ColumnHostView.java b/gui/src/main/java/org/jboss/as/console/client/domain/hosts/ColumnHostView.java
index <HASH>..<HASH> 100644
--- a/gui/src/main/java/org/jboss/as/console/client/domain/hosts/ColumnHostView.java
+++ b/gui/src/main/java/org/jboss/... | Finder improvements: column name oveflow handling | hal_core | train |
faae63fcf1895a11603beaed9fcd994015146da3 | diff --git a/core/core.go b/core/core.go
index <HASH>..<HASH> 100644
--- a/core/core.go
+++ b/core/core.go
@@ -250,7 +250,11 @@ func (n *IpfsNode) startOnlineServices(ctx context.Context, routingOption Routin
}
if pubsub || ipnsps {
- n.Floodsub = floodsub.NewFloodSub(ctx, peerhost)
+ service, err := floodsub.N... | handle error from changed NewFloodSub method
License: MIT | ipfs_go-ipfs | train |
59d314de3d6aff2f8af2b2ea1e96694900efe20e | diff --git a/src/_pytest/nodes.py b/src/_pytest/nodes.py
index <HASH>..<HASH> 100644
--- a/src/_pytest/nodes.py
+++ b/src/_pytest/nodes.py
@@ -123,7 +123,7 @@ class NodeMeta(type):
"See "
"https://docs.pytest.org/en/stable/deprecations.html#node-construction-changed-to-node-from-parent"
... | Show fullname on direct Node construction warning
This commit add the fullname on the Node construction warning.
Also add a test for this case. | pytest-dev_pytest | train |
c0040ad79766a51cd6a5dad08db1960ab2768f9f | diff --git a/sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/cpp/CppGenerator.java b/sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/cpp/CppGenerator.java
index <HASH>..<HASH> 100755
--- a/sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/cpp/CppGenerator.java
+++ b/sbe-tool/src/main/java/uk/co/real_... | [Java] Remove invalid use of noexcept and fix formatting. Fixes Issue #<I>. | real-logic_simple-binary-encoding | train |
5a75ab87149ed52396ebfda2174d40725bbdc689 | diff --git a/lib/rails_utils.rb b/lib/rails_utils.rb
index <HASH>..<HASH> 100644
--- a/lib/rails_utils.rb
+++ b/lib/rails_utils.rb
@@ -33,9 +33,11 @@ module RailsUtils
js_function_name = page_action_class
js_custom_name = options[:js_init_method]
- custom_js_init_method = options[:js_init_method] ... | Fixed indentation; used if statement in javascript_initalization for clarity | winston_rails_utils | train |
79675d254171a8295ccca78eeeefa88cd2728fcb | diff --git a/redisco/models/base.py b/redisco/models/base.py
index <HASH>..<HASH> 100644
--- a/redisco/models/base.py
+++ b/redisco/models/base.py
@@ -86,7 +86,7 @@ def _initialize_counters(model_class, name, bases, attrs):
def _initialize_key(model_class, name):
"""Initializes the key of the model."""
- mod... | Make model key configurable via the model's Meta class. | iamteem_redisco | train |
59d73a8dab3c9d2c9b27f2c714e414b26e1f5d78 | diff --git a/lib/SafeUrl.php b/lib/SafeUrl.php
index <HASH>..<HASH> 100644
--- a/lib/SafeUrl.php
+++ b/lib/SafeUrl.php
@@ -21,7 +21,7 @@ class SafeUrl extends Base
*
* @var string
*/
- protected $token;
+ protected $token = 'wei';
/**
* The expire seconds of signature | added default token for safeUrl service | twinh_wei | train |
ce5d9d6981fcba9652d1d9644a518e944f8f338a | diff --git a/src/main/java/de/rtner/security/auth/spi/PBKDF2Engine.java b/src/main/java/de/rtner/security/auth/spi/PBKDF2Engine.java
index <HASH>..<HASH> 100644
--- a/src/main/java/de/rtner/security/auth/spi/PBKDF2Engine.java
+++ b/src/main/java/de/rtner/security/auth/spi/PBKDF2Engine.java
@@ -160,14 +160,12 @@ public ... | Constant-time password checking, Issue #7 | m9aertner_PBKDF2 | train |
85bc4ac52b8dcfd8e588c4d4c59137a3bc57ad8c | diff --git a/guacamole/src/main/frontend/src/app/auth/service/authenticationService.js b/guacamole/src/main/frontend/src/app/auth/service/authenticationService.js
index <HASH>..<HASH> 100644
--- a/guacamole/src/main/frontend/src/app/auth/service/authenticationService.js
+++ b/guacamole/src/main/frontend/src/app/auth/se... | GUACAMOLE-<I>: Correct grammar of authenticationService documentation.
"promise succeeds" should be "promise that succeeds". | glyptodon_guacamole-client | train |
d9170aa6bccdaae1a031f6e9f79a1ab6ca95d2df | diff --git a/lib/project_haystack/point.rb b/lib/project_haystack/point.rb
index <HASH>..<HASH> 100644
--- a/lib/project_haystack/point.rb
+++ b/lib/project_haystack/point.rb
@@ -2,9 +2,7 @@ require 'date'
# require 'active_support'
module ProjectHaystack
module Point
- # extend ::ActiveSupport::Concern
- # ... | Include @ with request (rather than with point) | NREL_haystack_ruby | train |
15d76ae6de32e8d6e097ebefea68019ba0eaecac | diff --git a/lib/webpack.config.js b/lib/webpack.config.js
index <HASH>..<HASH> 100644
--- a/lib/webpack.config.js
+++ b/lib/webpack.config.js
@@ -305,7 +305,7 @@ const config = {
],
alias: {
...rxPaths(),
- 'react-dom': '@hot-loader/react-dom',
+ ...(isDev ? { 'react-dom': '@hot-loader/react... | Apply hot-loader patch only in development. | shopgate_cloud-sdk-webpack | train |
c72ffeddd25ee92856af2afb6ffd867bf04a9a58 | diff --git a/bolt.gemspec b/bolt.gemspec
index <HASH>..<HASH> 100644
--- a/bolt.gemspec
+++ b/bolt.gemspec
@@ -26,6 +26,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "net-ssh", "~> 4.0"
spec.add_dependency "net-sftp", "~> 2.0"
spec.add_dependency "winrm", "~> 2.0"
+ spec.add_dependency "winrm-fs",... | (TASKS-<I>) File copy over WinRM | puppetlabs_bolt | train |
19654fed9102d0690feec6c4c06f23afe28fd77f | diff --git a/ezp/Content/Query.php b/ezp/Content/Query.php
index <HASH>..<HASH> 100644
--- a/ezp/Content/Query.php
+++ b/ezp/Content/Query.php
@@ -11,6 +11,20 @@ namespace ezp\Content;
class Query
{
- public $criteria = array();
+ /**
+ * The Query criterion
+ * @var Criterion
+ */
+ public $cr... | Finalized QueryBuilder + Service\Content::find | ezsystems_ezpublish-kernel | train |
1c58e72b32464d31c5f2e89c197c72f57455c2fd | diff --git a/src/components/ProgressBar.js b/src/components/ProgressBar.js
index <HASH>..<HASH> 100644
--- a/src/components/ProgressBar.js
+++ b/src/components/ProgressBar.js
@@ -41,7 +41,7 @@ const ProgressBar = React.createClass({
backgroundColor: this.props.progressColor,
borderRadius: this.props.h... | limit progress bar to <I>% | mxenabled_mx-react-components | train |
b93991301e570e709e53905df7a76118a6c07365 | diff --git a/lib/nominet-epp/responses/contact/info_response.rb b/lib/nominet-epp/responses/contact/info_response.rb
index <HASH>..<HASH> 100644
--- a/lib/nominet-epp/responses/contact/info_response.rb
+++ b/lib/nominet-epp/responses/contact/info_response.rb
@@ -54,7 +54,7 @@ module NominetEPP
protected
... | Protect against nil extension data in response parsers | m247_nominet-epp | train |
501a0d032c32f625c00bc58f63b3afbb022ce8eb | diff --git a/src/main/java/com/thoughtworks/test/matchers/DeepEqualsMatcher.java b/src/main/java/com/thoughtworks/test/matchers/DeepEqualsMatcher.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/thoughtworks/test/matchers/DeepEqualsMatcher.java
+++ b/src/main/java/com/thoughtworks/test/matchers/DeepEqualsMatche... | Removed additional ctor in the matcher | tusharm_WebStub | train |
202a283d000228e83bc7df9102f11668bfe24760 | diff --git a/src/main/java/io/github/bonigarcia/wdm/WebDriverManager.java b/src/main/java/io/github/bonigarcia/wdm/WebDriverManager.java
index <HASH>..<HASH> 100644
--- a/src/main/java/io/github/bonigarcia/wdm/WebDriverManager.java
+++ b/src/main/java/io/github/bonigarcia/wdm/WebDriverManager.java
@@ -1504,6 +1504,9 @@... | Set browser binary (if present) when using Chromium manager | bonigarcia_webdrivermanager | train |
0737313f99b26b4c29f0fcbb3e3ceef289ecfcf4 | diff --git a/lib/httparty/connection_adapter.rb b/lib/httparty/connection_adapter.rb
index <HASH>..<HASH> 100644
--- a/lib/httparty/connection_adapter.rb
+++ b/lib/httparty/connection_adapter.rb
@@ -76,7 +76,7 @@ module HTTParty
def connection
host = clean_host(uri.host)
port = uri.port || (uri.schem... | Allow nil http_proxyaddr to pass through to Net::HTTP
This is useful when a proxy is used by default but you do not want to use it for some requests | jnunemaker_httparty | train |
a114046532e8c9576ec185b9fba071a28bab0b3d | diff --git a/lib/chef/cookbook/cookbook_version_loader.rb b/lib/chef/cookbook/cookbook_version_loader.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/cookbook/cookbook_version_loader.rb
+++ b/lib/chef/cookbook/cookbook_version_loader.rb
@@ -22,7 +22,6 @@ class Chef
UPLOADED_COOKBOOK_VERSION_FILE = ".uploaded-cookb... | more removal of cookbook shadowing/merging
we no longer support reading cookbooks from multiple cookbook paths. | chef_chef | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.