hash stringlengths 40 40 | diff stringlengths 131 26.7k | message stringlengths 7 694 | project stringlengths 5 67 | split stringclasses 1
value | diff_languages stringlengths 2 24 |
|---|---|---|---|---|---|
9d86bf2e0583e6265d2952dfb8cb8a2c8281068b | diff --git a/distutils/tests/test_install.py b/distutils/tests/test_install.py
index <HASH>..<HASH> 100644
--- a/distutils/tests/test_install.py
+++ b/distutils/tests/test_install.py
@@ -56,9 +56,7 @@ class InstallTestCase(support.TempdirManager,
expected = os.path.normpath(expected)
self.asse... | Refactor as simple replace. If a full string substitution proves to be necessary, let's create a mapping. | pypa_setuptools | train | py |
655643543640d9dab738f53ad8c33edc69a90971 | diff --git a/packages/react-admin/src/mui/button/SaveButton.js b/packages/react-admin/src/mui/button/SaveButton.js
index <HASH>..<HASH> 100644
--- a/packages/react-admin/src/mui/button/SaveButton.js
+++ b/packages/react-admin/src/mui/button/SaveButton.js
@@ -81,7 +81,7 @@ export class SaveButton extends Component {
... | Fix missing key warning in SaveButton | marmelab_react-admin | train | js |
0596346dbc0b73c4e81eac80ecba9bed44d30dab | diff --git a/lib/dependencies/HarmonyExportImportedSpecifierDependency.js b/lib/dependencies/HarmonyExportImportedSpecifierDependency.js
index <HASH>..<HASH> 100644
--- a/lib/dependencies/HarmonyExportImportedSpecifierDependency.js
+++ b/lib/dependencies/HarmonyExportImportedSpecifierDependency.js
@@ -195,7 +195,7 @@ c... | Always pass first argument of 'getMode' | webpack_webpack | train | js |
c40f74c5b5ffc81dd2ebcfdd24153a7a4506919c | diff --git a/test/test_asset.rb b/test/test_asset.rb
index <HASH>..<HASH> 100644
--- a/test/test_asset.rb
+++ b/test/test_asset.rb
@@ -5,6 +5,11 @@ module AssetTests
define_method("test #{name.inspect}", &block)
end
+ test "pathname" do
+ assert_kind_of Pathname, @asset.pathname
+ assert @asset.pathnam... | Assets should have a pathname | rails_sprockets | train | rb |
49a3bd561b71d4e965408dadbc9e2f2ded22577e | diff --git a/werkzeug/script.py b/werkzeug/script.py
index <HASH>..<HASH> 100644
--- a/werkzeug/script.py
+++ b/werkzeug/script.py
@@ -194,7 +194,7 @@ def find_actions(namespace, action_prefix):
def print_usage(actions):
"""Print the usage information. (Help screen)"""
- actions = actions.items()
+ actio... | Fix script print_usage for python3
AttributeError: 'dict_items' object has no attribute 'sort' | pallets_werkzeug | train | py |
86271396fbe3874b643a7327dc3fe974fcec684e | diff --git a/lib/rly/yacc.rb b/lib/rly/yacc.rb
index <HASH>..<HASH> 100644
--- a/lib/rly/yacc.rb
+++ b/lib/rly/yacc.rb
@@ -212,9 +212,9 @@ module Rly
errok = @errok
token = @lex.next
restart = @restart
- errtoken.lex = @lex if errtoken
+ #errtoken.l... | Finally added error handler to Yacc
It accepts a lambda, as it is supposed to return a token.
We will see if lambdas are actually cool, as I might
rewrite other parts of API with them. | farcaller_rly | train | rb |
79b96960f8746f3b20cbd285612601d2325429fe | diff --git a/grails-core/src/main/groovy/org/codehaus/groovy/grails/commons/DefaultGrailsControllerClass.java b/grails-core/src/main/groovy/org/codehaus/groovy/grails/commons/DefaultGrailsControllerClass.java
index <HASH>..<HASH> 100644
--- a/grails-core/src/main/groovy/org/codehaus/groovy/grails/commons/DefaultGrailsC... | always use mixed mode method actions, removed code that uses configuration | grails_grails-core | train | java |
5ccf5e0840317b9ae31bf6ce090960c5ab9b03b4 | diff --git a/holoviews/core/dimension.py b/holoviews/core/dimension.py
index <HASH>..<HASH> 100644
--- a/holoviews/core/dimension.py
+++ b/holoviews/core/dimension.py
@@ -108,6 +108,9 @@ class Dimension(param.Parameterized):
"%s" % self.name)
return value
+ def __repr__(self)... | Improved repr of Dimension using script_repr | pyviz_holoviews | train | py |
aaf1b2d911feeaae17a6627ae911e25cffe5d701 | diff --git a/test_app/config/application.rb b/test_app/config/application.rb
index <HASH>..<HASH> 100644
--- a/test_app/config/application.rb
+++ b/test_app/config/application.rb
@@ -4,6 +4,7 @@ require File.expand_path('../boot', __FILE__)
# require "active_record/railtie"
require "action_controller/railtie"
requir... | Add require "action_view/railtie" | activeadmin_activeadmin-mongoid | train | rb |
c2c5c465dbfd73c44d07f6e8e77697bb337812b6 | diff --git a/pycoin/symbols/xlt.py b/pycoin/symbols/xlt.py
index <HASH>..<HASH> 100644
--- a/pycoin/symbols/xlt.py
+++ b/pycoin/symbols/xlt.py
@@ -3,5 +3,5 @@ from pycoin.networks.bitcoinish import create_bitcoinish_network
network = create_bitcoinish_network(
network_name="Litecoin", symbol="XLT", subnet_name=... | Support Q addresses for Litecoin testnet | richardkiss_pycoin | train | py |
286388b1c70408978712fd2c9f4754cfb2914882 | diff --git a/eZ/Publish/Core/REST/Server/index.php b/eZ/Publish/Core/REST/Server/index.php
index <HASH>..<HASH> 100644
--- a/eZ/Publish/Core/REST/Server/index.php
+++ b/eZ/Publish/Core/REST/Server/index.php
@@ -15,7 +15,7 @@ use eZ\Publish\Core\REST\Common;
use Qafoo\RMF;
-require __DIR__ . '/../bootstrap.php';
+r... | Fix path to bootstrap.php in REST\Server\index.php | ezsystems_ezpublish-kernel | train | php |
8e4608252e6726b890cebab886a26e8e6304accf | diff --git a/config/software/chefdk.rb b/config/software/chefdk.rb
index <HASH>..<HASH> 100644
--- a/config/software/chefdk.rb
+++ b/config/software/chefdk.rb
@@ -63,7 +63,7 @@ build do
'rubocop' => '0.31.0',
'knife-spork' => '1.5.0',
'winrm-transport' => '1.0.2',
- 'knife-windows' ... | Move to knife-windows <I>.rc<I> (for nightlies and the next RC) | chef_chef | train | rb |
d4ae039a8514fb1c894e42f4cc5f0af9fea8a72c | diff --git a/astroid/scoped_nodes.py b/astroid/scoped_nodes.py
index <HASH>..<HASH> 100644
--- a/astroid/scoped_nodes.py
+++ b/astroid/scoped_nodes.py
@@ -1594,13 +1594,17 @@ class FunctionDef(mixins.MultiLineBlockMixin, node_classes.Statement, Lambda):
self.args.vararg is not None):
metac... | Switch to using postinit() for the metaclass hack | PyCQA_astroid | train | py |
54911bbb66bc64a701b5409f2a99eb77ae89937f | diff --git a/src/Core_Command.php b/src/Core_Command.php
index <HASH>..<HASH> 100644
--- a/src/Core_Command.php
+++ b/src/Core_Command.php
@@ -414,7 +414,7 @@ class Core_Command extends WP_CLI_Command {
* For those using WordPress with Apache, remember to update the `.htaccess`
* file with the appropriate multisi... | Update the link in the docblock of "core multisite-convert" command | wp-cli_core-command | train | php |
a0d5a0dacad690ba03bc15824bde14b1a7cdf42a | diff --git a/lib/arel/visitors/sql_server.rb b/lib/arel/visitors/sql_server.rb
index <HASH>..<HASH> 100644
--- a/lib/arel/visitors/sql_server.rb
+++ b/lib/arel/visitors/sql_server.rb
@@ -102,11 +102,22 @@ module Arel
if ArJdbc::AR42
def visit_Arel_Nodes_Bin o, a
- visit o.expr, a; a << ' ' <<... | [mssql] do not compare numeric values with cs equality operator | jruby_activerecord-jdbc-adapter | train | rb |
259a59cf0263c2c6890719bf61b4582df1e4760f | diff --git a/lib/beetle/redis_configuration_http_server.rb b/lib/beetle/redis_configuration_http_server.rb
index <HASH>..<HASH> 100644
--- a/lib/beetle/redis_configuration_http_server.rb
+++ b/lib/beetle/redis_configuration_http_server.rb
@@ -44,7 +44,6 @@ module Beetle
def server_status(response, type)
r... | don't interfere with the regular redis refreshing | xing_beetle | train | rb |
de21a72fee411a799818d34a0ca00dc1b91cfee7 | diff --git a/go/vt/tabletserver/query_executor.go b/go/vt/tabletserver/query_executor.go
index <HASH>..<HASH> 100644
--- a/go/vt/tabletserver/query_executor.go
+++ b/go/vt/tabletserver/query_executor.go
@@ -230,6 +230,12 @@ func (qre *QueryExecutor) checkPermissions() error {
qre.qe.tableaclExemptCount.Add(1)
ret... | stop table ACL check for query without a table name.
Vitess supports non table queries like "set flag=true"; therefore, table
ACL should be ignored for these queries. | vitessio_vitess | train | go |
2faca8a26207e316f21cadb9222ed640b7e76c16 | diff --git a/blob/html/input.js b/blob/html/input.js
index <HASH>..<HASH> 100644
--- a/blob/html/input.js
+++ b/blob/html/input.js
@@ -31,7 +31,8 @@ module.exports = {
getFileData(file, function(fileData) {
var orientation = getOrientation(fileData)
- if (opts.removeExif)
+ ... | removeExif can be an observable | ssbc_patchcore | train | js |
f3d7bd1f4d15ecab1e362cf654322861b89a07a5 | diff --git a/includes/managers/class-fs-cache-manager.php b/includes/managers/class-fs-cache-manager.php
index <HASH>..<HASH> 100755
--- a/includes/managers/class-fs-cache-manager.php
+++ b/includes/managers/class-fs-cache-manager.php
@@ -37,7 +37,7 @@
$this->_logger->entrance();
$this->_logger->log( 'id = ' . ... | [multisite] [cache-manager] Adjusted the cache manager options to use the MS network storage. | Freemius_wordpress-sdk | train | php |
7387c3249144e9b60af444205664ec35fcf54d2a | diff --git a/__tests__/clockSkew.js b/__tests__/clockSkew.js
index <HASH>..<HASH> 100644
--- a/__tests__/clockSkew.js
+++ b/__tests__/clockSkew.js
@@ -19,7 +19,7 @@ describe('Clock skew', () => {
createDirectLine: options => {
const workingDirectLine = window.WebChat.createDirectLine(options);
... | fixed a reasignment of a const variable in __tests__/clockSkew.js (#<I>) | Microsoft_BotFramework-WebChat | train | js |
0e3f18f1db46a861eca5e60ddd673a8ef5e11456 | diff --git a/src/python/twitter/pants/tasks/binary_utils.py b/src/python/twitter/pants/tasks/binary_utils.py
index <HASH>..<HASH> 100644
--- a/src/python/twitter/pants/tasks/binary_utils.py
+++ b/src/python/twitter/pants/tasks/binary_utils.py
@@ -43,6 +43,7 @@ _PATH_BY_ID = {
('darwin', '9'): [ 'mac', '10.5' ],
(... | Support for thrift in Mountain Lion.
(sapling split of 5d<I>a<I>bbc8b<I>c<I>e<I>c3e2f<I>) | pantsbuild_pants | train | py |
3321970e633027d7c9c2b2edc0d46570f0d6f8cd | diff --git a/salt/master.py b/salt/master.py
index <HASH>..<HASH> 100644
--- a/salt/master.py
+++ b/salt/master.py
@@ -390,12 +390,12 @@ class AESFuncs(object):
if not self.opts['external_nodes']:
return {}
if not salt.utils.which(self.opts['external_nodes']):
- log.error(('Spe... | Fix a tyop: s/safe_loads/safe_load/ | saltstack_salt | train | py |
ffeab9e2a5c3d27b852622c8f1877a5312bdca3f | diff --git a/gears/processors.py b/gears/processors.py
index <HASH>..<HASH> 100644
--- a/gears/processors.py
+++ b/gears/processors.py
@@ -81,10 +81,14 @@ class DirectivesMixin(object):
directive_linenos.append(lineno)
if not has_require_self:
body.append(self_body.strip())
+ ... | Remove directives from header using separate method | gears_django-gears | train | py |
da3c2162fa25bec220d3a5f6825ce0a413cefc00 | diff --git a/lib/starscope/db.rb b/lib/starscope/db.rb
index <HASH>..<HASH> 100644
--- a/lib/starscope/db.rb
+++ b/lib/starscope/db.rb
@@ -210,10 +210,7 @@ END
records.each do |record|
key = record[:name][-1].to_s
index = line.index(key)
- while index
- toks[index] = r... | cscope: only match one occurrence per token
For lines like
go("gogogo")
we would export four function calls (one per "go") even though the extractor
correctly only reported the one. | eapache_starscope | train | rb |
f34e645800c48589c96805b64c7ab67a2c5f2f33 | diff --git a/lib/nrser/log.rb b/lib/nrser/log.rb
index <HASH>..<HASH> 100644
--- a/lib/nrser/log.rb
+++ b/lib/nrser/log.rb
@@ -696,6 +696,9 @@ module NRSER::Log
old_appender = @appender
@appender = case dest
+ when false
+ # Used to remove the appender and set {.appender} to `nil`.
+ nil
... | Allow passing `dest: false` to log setup to remove the appender | nrser_nrser.rb | train | rb |
7594741dd9590337adc4e1b95a9e2f27ab89ea93 | diff --git a/lib/python/vdm/server/HTTPListener.py b/lib/python/vdm/server/HTTPListener.py
index <HASH>..<HASH> 100644
--- a/lib/python/vdm/server/HTTPListener.py
+++ b/lib/python/vdm/server/HTTPListener.py
@@ -1439,7 +1439,7 @@ class DatabaseAPI(MethodView):
# Create new deployment
app_root = os.path... | VDM-<I> Modified code to use os.path.join to join file path. | VoltDB_voltdb | train | py |
0b0cd1c786982061d1db7500b2b637980ca7c7e3 | diff --git a/javascript/webdriver/atoms/element.js b/javascript/webdriver/atoms/element.js
index <HASH>..<HASH> 100644
--- a/javascript/webdriver/atoms/element.js
+++ b/javascript/webdriver/atoms/element.js
@@ -213,21 +213,21 @@ webdriver.atoms.element.type = function(element, keys, opt_keyboard) {
throw Err... | JasonLeyba: Properly use an else-block or we'll attempt to type a non-printable character.
r<I> | SeleniumHQ_selenium | train | js |
96ca653e5f5d39cb9f5541fef1e3f8f5bff9f860 | diff --git a/master/buildbot/test/unit/test_schedulers_trysched.py b/master/buildbot/test/unit/test_schedulers_trysched.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/test/unit/test_schedulers_trysched.py
+++ b/master/buildbot/test/unit/test_schedulers_trysched.py
@@ -569,6 +569,19 @@ class Try_Jobdir(scheduler.S... | Add test to confirm that non-dict try properties raises AttributeError. | buildbot_buildbot | train | py |
98739b8eed71cd500a64d0a7fa2b8b7ac77eef86 | diff --git a/drivers/src/main/java/de/uniulm/omi/cloudiator/sword/drivers/openstack/strategy/OpenstackCreateVirtualMachineStrategy.java b/drivers/src/main/java/de/uniulm/omi/cloudiator/sword/drivers/openstack/strategy/OpenstackCreateVirtualMachineStrategy.java
index <HASH>..<HASH> 100644
--- a/drivers/src/main/java/de/... | Implemented support for openstack hosts when starting virtual machines | cloudiator_sword | train | java |
4826c1e259508a82ebeacdb67cf1455dd23482c7 | diff --git a/gnosis/eth/ethereum_network.py b/gnosis/eth/ethereum_network.py
index <HASH>..<HASH> 100644
--- a/gnosis/eth/ethereum_network.py
+++ b/gnosis/eth/ethereum_network.py
@@ -109,6 +109,7 @@ class EthereumNetwork(Enum):
WAN_TESTNET = 999
KLAY_BAOBAB = 1001
NEW_TESTNET = 1007
+ EURUS_MAINNET = ... | Added Eurus mainnet and testnet network ID. | gnosis_gnosis-py | train | py |
458456a70d4ba8e9af17400162c67e75642a467f | diff --git a/src/react/createComponent.js b/src/react/createComponent.js
index <HASH>..<HASH> 100644
--- a/src/react/createComponent.js
+++ b/src/react/createComponent.js
@@ -1,13 +1,23 @@
//@flow
import * as React from 'react'
-import type {Store} from 'effector'
+import {type Store, is, invariant, createStoreObje... | allow to use object with stores in createComponent | zerobias_effector | train | js |
ac038bf53c8caea7a142b0d10e1b1fe90705a328 | diff --git a/sos/report/plugins/vhostmd.py b/sos/report/plugins/vhostmd.py
index <HASH>..<HASH> 100644
--- a/sos/report/plugins/vhostmd.py
+++ b/sos/report/plugins/vhostmd.py
@@ -20,7 +20,7 @@ class vhostmd(Plugin, RedHatPlugin):
packages = ['virt-what']
def setup(self):
- vw = self.exec_cmd("virt-wh... | [vhostmd] Capture the output of vhostmd
Currently we only use the output of vhostmd temporarily
to check if the machine is a vm or not. With this
patch we also capture its output.
Resolves: #<I> | sosreport_sos | train | py |
43df4640eb816671424e5927a50ecb4226354966 | diff --git a/modelx/__init__.py b/modelx/__init__.py
index <HASH>..<HASH> 100644
--- a/modelx/__init__.py
+++ b/modelx/__init__.py
@@ -20,7 +20,7 @@ Attributes:
"""
-VERSION = (0, 13, 0)
+VERSION = (0, 13, 1)
__version__ = ".".join([str(x) for x in VERSION])
from modelx.core.api import * # must come after __ver... | DIST: Release <I> | fumitoh_modelx | train | py |
7e3fd9025b187d0984e124e04a56a8e74ceed5fb | diff --git a/lib/sidekiq_unique_jobs/version.rb b/lib/sidekiq_unique_jobs/version.rb
index <HASH>..<HASH> 100644
--- a/lib/sidekiq_unique_jobs/version.rb
+++ b/lib/sidekiq_unique_jobs/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module SidekiqUniqueJobs
- VERSION = '6.0.0.rc6'
+ VERSION = '6.0.0.rc7'
... | Bump to <I>.rc7 | mhenrixon_sidekiq-unique-jobs | train | rb |
522e36dd9e9d80405e48439514c46208b46ebd99 | diff --git a/test/test_framework.go b/test/test_framework.go
index <HASH>..<HASH> 100644
--- a/test/test_framework.go
+++ b/test/test_framework.go
@@ -525,18 +525,7 @@ func TrySuite(t *testing.T, f func(t *T), times int) {
tee.attempt++
time.Sleep(200 * time.Millisecond)
}
- if tee.failed {
- if t.Failed(... | Fixing tests timing out at 3 minutes even when they return with error quickly (#<I>) | micro_micro | train | go |
784773e3b12ce89b5e70039668a0aed8cf04ac97 | diff --git a/client/ristretto.js b/client/ristretto.js
index <HASH>..<HASH> 100644
--- a/client/ristretto.js
+++ b/client/ristretto.js
@@ -6,10 +6,13 @@
} else {
var reload_stylesheets = function(first_time) {
var links = document.getElementsByTagName("link");
+ var link, char;
for(var i = 0; i < li... | Fixed: Ristretto wasnt able to reload stylsheets with query in url. | ViliamKopecky_Ristretto | train | js |
b8114265e6c8b280a4f45abe1104231be978fdf8 | diff --git a/lib/idb/version.rb b/lib/idb/version.rb
index <HASH>..<HASH> 100644
--- a/lib/idb/version.rb
+++ b/lib/idb/version.rb
@@ -1,3 +1,3 @@
module Idb
- VERSION = "1.3.2"
+ VERSION = "2.1.0"
end | Bumping version to be consistent with github | dmayer_idb | train | rb |
2d2af50284709cfe81a84899f4c37c00b7cd528a | diff --git a/go/vt/mysqlctl/split.go b/go/vt/mysqlctl/split.go
index <HASH>..<HASH> 100644
--- a/go/vt/mysqlctl/split.go
+++ b/go/vt/mysqlctl/split.go
@@ -905,8 +905,8 @@ func buildQueryList(destinationDbName, query string, writeBinLogs bool) []string
queries := make([]string, 0, 4)
if !writeBinLogs {
queries = ... | Multirestore: can only set TRANSACTION ISOLATION LEVEL read only
when not writing to bin logs. | vitessio_vitess | train | go |
6329b3d19f1f90769ac7d4dd65b45024f76a0f94 | diff --git a/src/main/java/de/cinovo/cloudconductor/api/interfaces/IHost.java b/src/main/java/de/cinovo/cloudconductor/api/interfaces/IHost.java
index <HASH>..<HASH> 100644
--- a/src/main/java/de/cinovo/cloudconductor/api/interfaces/IHost.java
+++ b/src/main/java/de/cinovo/cloudconductor/api/interfaces/IHost.java
@@ -6... | adds support for movement of hosts to other templates | cinovo_cloudconductor-api | train | java |
cdb72c85b4ba724cfae2a39d9fd5add33c9bd74d | diff --git a/sdk/src/main/java/com/centurylink/cloud/sdk/server/services/ServerModule.java b/sdk/src/main/java/com/centurylink/cloud/sdk/server/services/ServerModule.java
index <HASH>..<HASH> 100644
--- a/sdk/src/main/java/com/centurylink/cloud/sdk/server/services/ServerModule.java
+++ b/sdk/src/main/java/com/centuryli... | Refactor Dependency Injection #<I> | CenturyLinkCloud_clc-java-sdk | train | java |
e0a5396ad8a7055cd0aca544990c4793c2b96e05 | diff --git a/lib/sensu/server.rb b/lib/sensu/server.rb
index <HASH>..<HASH> 100644
--- a/lib/sensu/server.rb
+++ b/lib/sensu/server.rb
@@ -508,6 +508,9 @@ module Sensu
result[:check][:output].is_a?(String) &&
result[:check][:status].is_a?(Integer)
else
+ @logger.warn('invalid result'... | [payloads] moved invalid result log line to valid_result?() | sensu_sensu | train | rb |
460528cf942b412fb0078de9c7deca2e6bd966ff | diff --git a/pysecure/adapters/ssha.py b/pysecure/adapters/ssha.py
index <HASH>..<HASH> 100644
--- a/pysecure/adapters/ssha.py
+++ b/pysecure/adapters/ssha.py
@@ -373,7 +373,7 @@ def ssh_threads_set_callbacks(cb):
raise SshError("Could not set callbacks.")
def ssh_set_blocking(ssh_session, blocking):
- c... | fix: invalid second argument type to ssh_set_blocking | dsoprea_PySecure | train | py |
a143d04331e35b5b89a1cda73e3550c997f269ec | diff --git a/indra/tests/test_bel.py b/indra/tests/test_bel.py
index <HASH>..<HASH> 100644
--- a/indra/tests/test_bel.py
+++ b/indra/tests/test_bel.py
@@ -30,7 +30,8 @@ def test_bel_ndex_query():
@attr('webservice')
def test_pybel_neighborhood_query():
- bp = bel.process_pybel_neighborhood(['NFKB1'])
+ corpus... | Switch to small corpus in BEL test | sorgerlab_indra | train | py |
0cc37a622cd659e8f02eaf4a4967bfaf3c264a30 | diff --git a/tests/utils/helpers.py b/tests/utils/helpers.py
index <HASH>..<HASH> 100644
--- a/tests/utils/helpers.py
+++ b/tests/utils/helpers.py
@@ -62,6 +62,7 @@ MAX_WAIT_LOOPS = 10
#: Wraps mock.patch() to make mocksignature=True by default.
patch = functools.partial(mock_module.patch, mocksignature=True)
+
de... | fixed pep8 blanklines violation and added support of mock < <I> | gem_oq-engine | train | py |
05cfce856b9cfd326022ea7e91de6a70a4432af7 | diff --git a/app/models/renalware/transplants/registration.rb b/app/models/renalware/transplants/registration.rb
index <HASH>..<HASH> 100644
--- a/app/models/renalware/transplants/registration.rb
+++ b/app/models/renalware/transplants/registration.rb
@@ -9,6 +9,9 @@ module Renalware
belongs_to :patient
... | Add current_status association to Registration | airslie_renalware-core | train | rb |
87e9ad5e87acaaa3440b6d67579dd1e58df6e98e | diff --git a/lib/win32/certstore/mixin/assertions.rb b/lib/win32/certstore/mixin/assertions.rb
index <HASH>..<HASH> 100644
--- a/lib/win32/certstore/mixin/assertions.rb
+++ b/lib/win32/certstore/mixin/assertions.rb
@@ -82,7 +82,7 @@ module Win32
# ROOT -> Root certificates.
# SPC -> Software Publisher... | Resolve rubocop offences | chef_win32-certstore | train | rb |
226fe3bf38c2f592f0b71e3904685bbb86320ebc | diff --git a/lib/couchrest/model/views.rb b/lib/couchrest/model/views.rb
index <HASH>..<HASH> 100644
--- a/lib/couchrest/model/views.rb
+++ b/lib/couchrest/model/views.rb
@@ -92,6 +92,7 @@ module CouchRest
# Dispatches to any named view.
def view(name, query={}, &block)
+ query = query.dup ... | Fixing view deleting database option bug | couchrest_couchrest_model | train | rb,rb |
9a53c62cce4ff296d33fc89b6824c093b7be4f40 | diff --git a/andes/plot.py b/andes/plot.py
index <HASH>..<HASH> 100644
--- a/andes/plot.py
+++ b/andes/plot.py
@@ -770,7 +770,7 @@ class TDSData:
return fig, axes
- def panoview(self, mdl, *, ncols=3, vars=None, idx=None, a=None, figsize=None, **kwargs):
+ def panoview(self, mdl, vars, *, ncols=3, id... | Let `panoview` take `vars` as the positional argument after model. | cuihantao_andes | train | py |
278a32ba9155b87ba11e18f22c4c5a584db31ac5 | diff --git a/Lib/fontbakery/profiles/googlefonts_conditions.py b/Lib/fontbakery/profiles/googlefonts_conditions.py
index <HASH>..<HASH> 100644
--- a/Lib/fontbakery/profiles/googlefonts_conditions.py
+++ b/Lib/fontbakery/profiles/googlefonts_conditions.py
@@ -164,6 +164,12 @@ def registered_vendor_ids():
CACHED = r... | Workaround for beautifulsoup processing partial malformed sections | googlefonts_fontbakery | train | py |
e68d4975fad0edd9e46808b055436e82e635f0c4 | diff --git a/pyvips/vimage.py b/pyvips/vimage.py
index <HASH>..<HASH> 100644
--- a/pyvips/vimage.py
+++ b/pyvips/vimage.py
@@ -126,7 +126,7 @@ def _deprecated(note):
return _dep
-# Rules for the mapping betweeen numpy typestrings and libvips formats
+# Rules for the mapping between numpy typestrings and libvip... | docs: fix simple typo, betweeen -> between (#<I>)
There is a small typo in pyvips/vimage.py.
Should read `between` rather than `betweeen`. | libvips_pyvips | train | py |
4b044bd0741342c43c36e508d98aae1f2c761405 | diff --git a/HTSeq/__init__.py b/HTSeq/__init__.py
index <HASH>..<HASH> 100644
--- a/HTSeq/__init__.py
+++ b/HTSeq/__init__.py
@@ -809,6 +809,13 @@ class BAM_Reader( object ):
yield SAM_Alignment.from_pysam_AlignedRead( pa, sf )
self.record_no += 1
+ def fetch( self, reference = None,... | Added BAM_Reader.fetch capability to get regions directly, interface is identical to pysam.Samfile.fetch. | simon-anders_htseq | train | py |
98de2652c48b7ede5c84171b6792a46c3a3ff07d | diff --git a/worker/uniter/operation/runhook.go b/worker/uniter/operation/runhook.go
index <HASH>..<HASH> 100644
--- a/worker/uniter/operation/runhook.go
+++ b/worker/uniter/operation/runhook.go
@@ -249,19 +249,20 @@ func (rh *runHook) Commit(state State) (*State, error) {
Step: Pending,
}
- hi := &hook.Info{Kin... | Simplify runhook commit logic
This is a drive-by fix which should make the code easier to understand
as opposed to the previous version which relied on "fallthrough"
statements to tweak the stateChange object in just the right places. | juju_juju | train | go |
203f487d9b468cac4ab84c05e4fded64eeb6b6fe | diff --git a/play-maven-plugin/src/main/java/com/google/code/play/AbstractArchivingMojo.java b/play-maven-plugin/src/main/java/com/google/code/play/AbstractArchivingMojo.java
index <HASH>..<HASH> 100644
--- a/play-maven-plugin/src/main/java/com/google/code/play/AbstractArchivingMojo.java
+++ b/play-maven-plugin/src/mai... | Add debug info about every expanded file/directory. | play1-maven-plugin_play1-maven-plugin | train | java |
b2087d194b164cabe6022500b9a9335168d7bbf8 | diff --git a/packages/radio/src/react/button.js b/packages/radio/src/react/button.js
index <HASH>..<HASH> 100644
--- a/packages/radio/src/react/button.js
+++ b/packages/radio/src/react/button.js
@@ -5,7 +5,6 @@ import { defaultName as themeDefaultName } from '@pluralsight/ps-design-system-t
import * as propsUtil from ... | fix(radio): fix build error | pluralsight_design-system | train | js,js |
2a844287ef231f008edf15032fa6bed5d62c089d | diff --git a/Neos.Flow/Tests/Unit/Reflection/ClassSchemaTest.php b/Neos.Flow/Tests/Unit/Reflection/ClassSchemaTest.php
index <HASH>..<HASH> 100644
--- a/Neos.Flow/Tests/Unit/Reflection/ClassSchemaTest.php
+++ b/Neos.Flow/Tests/Unit/Reflection/ClassSchemaTest.php
@@ -263,7 +263,7 @@ class ClassSchemaTest extends UnitTes... | TASK: Fix ClassSchemaTest for missing union types | neos_flow-development-collection | train | php |
0fefe1e73fd767efb2eccba9bb436fe7b59b50c1 | diff --git a/lib/helper/closurecompiler.js b/lib/helper/closurecompiler.js
index <HASH>..<HASH> 100644
--- a/lib/helper/closurecompiler.js
+++ b/lib/helper/closurecompiler.js
@@ -0,0 +1,13 @@
+/*
+ * grunt-require
+ * https://github.com/asciidisco/grunt-requirejs
+ *
+ * Copyright (c) 2012 asciidisco
+ * Licensed under... | Boilerplate code for closure compiler helper | asciidisco_grunt-requirejs | train | js |
13385e40f606d7adcb1141410366a72e8411e748 | diff --git a/datajoint/base_relation.py b/datajoint/base_relation.py
index <HASH>..<HASH> 100644
--- a/datajoint/base_relation.py
+++ b/datajoint/base_relation.py
@@ -143,7 +143,7 @@ class BaseRelation(RelationalOperand):
if isinstance(rows, RelationalOperand):
# INSERT FROM SELECT - build alter... | datajoint/base_relation.py: improve insert-from-select field-narrowing-required determinant | datajoint_datajoint-python | train | py |
7a3058cd34fa1243f425100be8c735ddde29a8a4 | diff --git a/pyqode/core/modes/code_completion.py b/pyqode/core/modes/code_completion.py
index <HASH>..<HASH> 100644
--- a/pyqode/core/modes/code_completion.py
+++ b/pyqode/core/modes/code_completion.py
@@ -49,8 +49,17 @@ class SubsequenceSortFilterProxyModel(QtCore.QSortFilterProxyModel):
mr = re.match(pa... | Fix funky sorting of subsequences | pyQode_pyqode.core | train | py |
be11dd15def9a76fddf82e952bd140973a3ff104 | diff --git a/ella/newman/media/js/newman.js b/ella/newman/media/js/newman.js
index <HASH>..<HASH> 100644
--- a/ella/newman/media/js/newman.js
+++ b/ella/newman/media/js/newman.js
@@ -1090,6 +1090,12 @@ $( function() {
overload_default_submit();
//// End of ajax forms
+ // Packing and unpacking filter... | Re-introduced the erroneously deleted code for packing and unpacking filters. | ella_ella | train | js |
4ad5d02ef82b6628b85887cca2ddb08ffdbc5c3b | diff --git a/check_api/src/main/java/com/google/errorprone/BaseErrorProneJavaCompiler.java b/check_api/src/main/java/com/google/errorprone/BaseErrorProneJavaCompiler.java
index <HASH>..<HASH> 100644
--- a/check_api/src/main/java/com/google/errorprone/BaseErrorProneJavaCompiler.java
+++ b/check_api/src/main/java/com/goo... | Fix situation where -Xep:CheckName:WARN -XepPatchChecks:OtherCheck causes
refactorings to trigger for both OtherCheck and CheckName.
RELNOTES: n/a
-------------
Created by MOE: <URL> | google_error-prone | train | java |
c509110ca21d7b375fe08aa12de573059ce56877 | diff --git a/src/LoaderInterface.php b/src/LoaderInterface.php
index <HASH>..<HASH> 100644
--- a/src/LoaderInterface.php
+++ b/src/LoaderInterface.php
@@ -9,7 +9,7 @@
namespace Xidea\User;
-use Xidea\Component\Base\Loader\ModelLoaderInterface;
+use Xidea\Base\Model\LoaderInterface as ModelLoaderInterface;
/**
... | Updated with changes in the base component | XideaPL_user | train | php |
524b1b3f2928f4d967c74c6bc8f472bf088390f1 | diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -105,16 +105,15 @@ end
module IncludeAndInherit
def it_can_include_and_inherit(*klasses, &block)
- it_includes_in_and_inherits_from_a_custom_base(*klasses, &block)
+ it_i... | change specs to test class that includes base_module | msimonborg_lazy_record | train | rb |
b6d8e82f234328a81b68fe822597a0181476cf4e | diff --git a/test/bench.js b/test/bench.js
index <HASH>..<HASH> 100644
--- a/test/bench.js
+++ b/test/bench.js
@@ -4,8 +4,11 @@ var FlumeLog = require('../')
var codec = require('flumecodec')
var toCompat = require('../compat')
+var file = '/tmp/bench-flumelog-raf.log'
+try { require('fs').unlinkSync(file) } catch ... | delete the file before running benchmark, so we do not run out of diskspace | dominictarr_flumelog-aligned-offset | train | js |
2a3e27ca69eadad1da76b7fbd4cdf557b708093f | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -38,6 +38,11 @@ function gitInit({
run('git config mergetool.keepBackup false', {
cwd
});
+
+ // ignore any global .gitignore that will mess with us
+ run('git config --local core.excludesfile fals... | ignore any global .gitignore that will mess with us | kellyselden_git-fixtures | train | js |
2dc8845d4e2e1987782d002e6c5abafd965776f5 | diff --git a/pydisque/client.py b/pydisque/client.py
index <HASH>..<HASH> 100644
--- a/pydisque/client.py
+++ b/pydisque/client.py
@@ -147,7 +147,7 @@ class Client(object):
raise
def _grouper(self, iterable, n, fillvalue=None):
- """Collect data into fixed-length chunks or blocks"""
+ ... | Cleaning up before writing the new feature. | ybrs_pydisque | train | py |
a378cffdeae86509533584e668f46463de2864a5 | diff --git a/tests/InjectorTest.php b/tests/InjectorTest.php
index <HASH>..<HASH> 100644
--- a/tests/InjectorTest.php
+++ b/tests/InjectorTest.php
@@ -19,7 +19,7 @@ class InjectorTest extends TestCase
{
return [
['prod-app', 0, 0],
- ['app', 1, 2]
+ ['app', 2, 3]
... | fix CountOfNewProvider | bearsunday_BEAR.Package | train | php |
eac4e8e2510485c452af3614ddb8042ceec1fc34 | diff --git a/src/manipulation.js b/src/manipulation.js
index <HASH>..<HASH> 100644
--- a/src/manipulation.js
+++ b/src/manipulation.js
@@ -620,11 +620,6 @@ jQuery.extend({
// Fix #12392 for WebKit and IE > 9
tmp.textContent = "";
- // Fix #12392 for oldIE
- while ( tmp.firstChild ) {
- tmp.re... | Remove removal of container children through removeChild method | jquery_jquery | train | js |
bd11cd7979914f55b62bc074c6414121a742f144 | diff --git a/src/annotation/annotations/requires.js b/src/annotation/annotations/requires.js
index <HASH>..<HASH> 100644
--- a/src/annotation/annotations/requires.js
+++ b/src/annotation/annotations/requires.js
@@ -70,11 +70,11 @@ module.exports = {
item.requires.toJSON = utils.mapArray.bind(null, item.requi... | Always type and name in JSON representation | SassDoc_sassdoc | train | js |
c2401684b98218535099b795a9f1adb3f456fdc1 | diff --git a/app/Controllers/AdminAccessController.php b/app/Controllers/AdminAccessController.php
index <HASH>..<HASH> 100644
--- a/app/Controllers/AdminAccessController.php
+++ b/app/Controllers/AdminAccessController.php
@@ -145,9 +145,14 @@ class AdminAccessController extends AdminBaseController
*/
public... | Unset CSRF token when logging out. | PitonCMS_Engine | train | php,php |
6470743683b0127d88c2b7ae6e1a6cac890eae83 | diff --git a/go-serial-test/go-serial-test.go b/go-serial-test/go-serial-test.go
index <HASH>..<HASH> 100644
--- a/go-serial-test/go-serial-test.go
+++ b/go-serial-test/go-serial-test.go
@@ -11,7 +11,7 @@ import (
"io"
"os"
- "github.com/cbrake/go-serial/serial"
+ "github.com/jacobsa/go-serial/serial"
)
func ... | switch to github.com/jacobsa import | jacobsa_go-serial | train | go |
46547d22a8321fdfcb2f0dbdb69c56d0505113b5 | diff --git a/src/Router.php b/src/Router.php
index <HASH>..<HASH> 100644
--- a/src/Router.php
+++ b/src/Router.php
@@ -57,6 +57,11 @@ class Router extends Container
return $match;
}
+ public function applyAutoFilter(Match $match)
+ {
+ return call_user_func($this->autoFilter, $match);
+ }
+
public function re... | allow the autofilter to be called externally | fuelphp_routing | train | php |
17fcd06780d1aff9dc5029f48fca5682aa753c37 | diff --git a/src/ui/controls/progress/progress.view.js b/src/ui/controls/progress/progress.view.js
index <HASH>..<HASH> 100644
--- a/src/ui/controls/progress/progress.view.js
+++ b/src/ui/controls/progress/progress.view.js
@@ -44,8 +44,8 @@ export default class ProgressView {
this.$node
.append(this.$inpu... | Small change in DOM structure for ProgressControl View | wix_playable | train | js |
a8b17c725c2727548aadf58d196dd9fb0496fd9a | diff --git a/packages/origin.js/test/contract-service.test.js b/packages/origin.js/test/contract-service.test.js
index <HASH>..<HASH> 100644
--- a/packages/origin.js/test/contract-service.test.js
+++ b/packages/origin.js/test/contract-service.test.js
@@ -1,6 +1,7 @@
import { expect } from "chai"
import ContractServic... | Use our web3 rather than the browser's web3 for contract service tests | OriginProtocol_origin-js | train | js |
238d6ef567ffdcceb20fcc12ca69980a9f551f35 | diff --git a/python/src/nnabla/utils/converter/setup.py b/python/src/nnabla/utils/converter/setup.py
index <HASH>..<HASH> 100644
--- a/python/src/nnabla/utils/converter/setup.py
+++ b/python/src/nnabla/utils/converter/setup.py
@@ -35,7 +35,7 @@ if __name__ == '__main__':
install_requires = [
'ply',
- ... | limit tensorflow version to <I> | sony_nnabla | train | py |
d86e7ae3a05fa2888d1b9d83bd682771f53cea7a | diff --git a/internal/validate/spec.go b/internal/validate/spec.go
index <HASH>..<HASH> 100644
--- a/internal/validate/spec.go
+++ b/internal/validate/spec.go
@@ -21,10 +21,10 @@ import (
"regexp"
"strings"
+ "github.com/go-openapi/analysis"
"github.com/go-openapi/jsonpointer"
"github.com/go-openapi/loads"
... | moves loads and analysis into their own packages | go-openapi_validate | train | go,go |
b5e51ff39a78dd7286c4f6e8c884de2f015f3b5e | diff --git a/lib/graphql.rb b/lib/graphql.rb
index <HASH>..<HASH> 100644
--- a/lib/graphql.rb
+++ b/lib/graphql.rb
@@ -55,31 +55,6 @@ module GraphQL
def self.scan_with_ragel(graphql_string)
GraphQL::Language::Lexer.tokenize(graphql_string)
end
-
- # Support Ruby 2.2 by implementing `-"str"`. If we drop 2.2 ... | refactor: remove unsupported String refinements | rmosolgo_graphql-ruby | train | rb |
9da25c0e9cea5ab9701f285c38a098914ad58d4f | diff --git a/core/src/main/java/com/orientechnologies/common/jnr/ONative.java b/core/src/main/java/com/orientechnologies/common/jnr/ONative.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/orientechnologies/common/jnr/ONative.java
+++ b/core/src/main/java/com/orientechnologies/common/jnr/ONative.java
@@ -3... | Fixes detection of memory cgroups
Fixes incorrect detection of memory cgroups on modern Linux distributions. | orientechnologies_orientdb | train | java |
63d090752f0f6db83f396128e593f5ca355f2b3b | diff --git a/lib/Field.php b/lib/Field.php
index <HASH>..<HASH> 100644
--- a/lib/Field.php
+++ b/lib/Field.php
@@ -188,7 +188,7 @@ class Field extends AbstractModel
*/
function required($t = UNDEFINED)
{
- throw $this->exception('required() is obsolete, use mandatory()');
+ return $this->m... | revert decision to obsolete 'required' | atk4_atk4 | train | php |
45d7271a0290597003e14ec8aa90b273dff3fa83 | diff --git a/src/CommandHandling/ResqueCommandBus.php b/src/CommandHandling/ResqueCommandBus.php
index <HASH>..<HASH> 100644
--- a/src/CommandHandling/ResqueCommandBus.php
+++ b/src/CommandHandling/ResqueCommandBus.php
@@ -117,6 +117,7 @@ class ResqueCommandBus extends CommandBusDecoratorBase implements ContextAwareIn
... | iii-<I>: Ensure job_finished is logged as well when an exception occurs in command handling | cultuurnet_udb3-php | train | php |
7cfcd406a9af2846548ac78743bb47c6ff5bf534 | diff --git a/gosu-core/src/main/java/gw/internal/gosu/parser/JavaFieldPropertyInfo.java b/gosu-core/src/main/java/gw/internal/gosu/parser/JavaFieldPropertyInfo.java
index <HASH>..<HASH> 100644
--- a/gosu-core/src/main/java/gw/internal/gosu/parser/JavaFieldPropertyInfo.java
+++ b/gosu-core/src/main/java/gw/internal/gosu... | IDE-<I>. Put back prior fix | gosu-lang_gosu-lang | train | java |
aaeeff387ec4cfa16a65de36e60df36a3ba4854f | diff --git a/models/queued_task.php b/models/queued_task.php
index <HASH>..<HASH> 100644
--- a/models/queued_task.php
+++ b/models/queued_task.php
@@ -26,12 +26,13 @@ class QueuedTask extends AppModel {
* @param string $reference any array
* @return bool success
*/
- public function createJob($jobName, $data, ... | Forgot to include to facilitate identifying the tasks, a reference field has been added to the queued_tasks table which is now the 5th parameter of the QueuedTask::createJob() method | dereuromark_cakephp-queue | train | php |
558bd6a27b952c16631f994c76ab79c5fdf29661 | diff --git a/lib/determine-basal/determine-basal.js b/lib/determine-basal/determine-basal.js
index <HASH>..<HASH> 100644
--- a/lib/determine-basal/determine-basal.js
+++ b/lib/determine-basal/determine-basal.js
@@ -494,7 +494,9 @@ var determine_basal = function determine_basal(glucose_status, currenttemp, iob_
... | only zero-temp for insulin already delivered, to help with intermittent pump comms | openaps_oref0 | train | js |
85f76cde1606ae7ba434cbb64ec7fd174d10f93d | diff --git a/lib/better_receive/base.rb b/lib/better_receive/base.rb
index <HASH>..<HASH> 100644
--- a/lib/better_receive/base.rb
+++ b/lib/better_receive/base.rb
@@ -11,7 +11,7 @@ module BetterReceive
attr_reader :subject
def subject_is_any_instance?
- subject.is_a?(RSpec::Mocks::AnyInstance::Recorder... | Check that RSpec has .any_instance | se3000_better_receive | train | rb,rb |
686f85515f64aa5cffd44a392d9c2ea0b8b0d51f | diff --git a/activerecord/test/cases/serialized_attribute_test.rb b/activerecord/test/cases/serialized_attribute_test.rb
index <HASH>..<HASH> 100644
--- a/activerecord/test/cases/serialized_attribute_test.rb
+++ b/activerecord/test/cases/serialized_attribute_test.rb
@@ -22,7 +22,7 @@ class SerializedAttributeTest < Act... | Reset column info on original Topic in serialized attr test
Call .reset_column_information on ::Topic in serialized attribute
test so that attribute methods are safely undefined for all topics. | rails_rails | train | rb |
c8774cd7f55e21db2cf9107d8aab4c0b782de505 | diff --git a/sprd/model/processor/BasketItemProcessor.js b/sprd/model/processor/BasketItemProcessor.js
index <HASH>..<HASH> 100644
--- a/sprd/model/processor/BasketItemProcessor.js
+++ b/sprd/model/processor/BasketItemProcessor.js
@@ -23,6 +23,13 @@ define(['sprd/model/processor/DefaultProcessor', 'sprd/model/Shop', 's... | DEV-<I> - Implement bulk size selection | spreadshirt_rAppid.js-sprd | train | js |
579b3e3e1978af40a545485cef666a3cb2a22e6a | diff --git a/src/jquery.peity.js b/src/jquery.peity.js
index <HASH>..<HASH> 100644
--- a/src/jquery.peity.js
+++ b/src/jquery.peity.js
@@ -4,7 +4,7 @@
// http://benpickles.github.com/peity/
//
// Released under MIT license.
-(function($) {
+(function($, document) {
$.fn.peity = function(type, options) {
if (... | Pass `document` to function to squeeze the minified version a little more. | benpickles_peity | train | js |
9457d7302e9e26bfb5fc207344182babe2abe235 | diff --git a/lib/site-inspector.rb b/lib/site-inspector.rb
index <HASH>..<HASH> 100644
--- a/lib/site-inspector.rb
+++ b/lib/site-inspector.rb
@@ -1,7 +1,5 @@
-
-# needed for HTTP analysis
require 'open-uri'
-require "addressable/uri"
+require 'addressable/uri'
require 'public_suffix'
require 'typhoeus'
diff --git... | up should include <I>x | benbalter_site-inspector | train | rb,rb |
f9e1f9dc1445c0717de6f5e3a19fea6d9d1d7672 | diff --git a/src/loadNamespaces.js b/src/loadNamespaces.js
index <HASH>..<HASH> 100644
--- a/src/loadNamespaces.js
+++ b/src/loadNamespaces.js
@@ -1,6 +1,5 @@
-// shim object entries
-if (!Object.entries)
- Object.entries = function( obj ){
+const objectEntries = Object.entries ||
+ function( obj ){
var ownProps... | Don't polyfill Object.entries globally
Patching `Object.entries` affects other code beyond this library, which
ideally should not happen. With this patch the polyfill is still used
when necessary but the global environment is not unexpectedly changed by
including react-i<I>next :) | i18next_react-i18next | train | js |
c5b2936d2315b79f718a1b1c0f7f1f4e34fc3984 | diff --git a/src/utils/I18nManager.spec.js b/src/utils/I18nManager.spec.js
index <HASH>..<HASH> 100644
--- a/src/utils/I18nManager.spec.js
+++ b/src/utils/I18nManager.spec.js
@@ -98,6 +98,9 @@ describe('I18nManager', () => {
assert.equal('10,000.00', i18n.formatDecimalNumber(10000));
assert.equal(10000, i18... | (CMMN-<I>) Added tests for formatDecimalNumber method. | OpusCapita_i18n | train | js |
4d888448bb6baf7ebbf25ccc74a3cb242eb97d8a | diff --git a/src/Filesystem/DefaultFilesystem.php b/src/Filesystem/DefaultFilesystem.php
index <HASH>..<HASH> 100644
--- a/src/Filesystem/DefaultFilesystem.php
+++ b/src/Filesystem/DefaultFilesystem.php
@@ -96,8 +96,15 @@ class DefaultFilesystem implements Filesystem
touch($targetFile);
$stream = $t... | copy via streams (#<I>)
this prevents allowed memory exhausted while copying big files | spatie_laravel-medialibrary | train | php |
dc1b0ee2e1ec1f49e4b0d660b1b117c4d0b628e8 | diff --git a/build/webpack.dev.js b/build/webpack.dev.js
index <HASH>..<HASH> 100644
--- a/build/webpack.dev.js
+++ b/build/webpack.dev.js
@@ -13,16 +13,11 @@ module.exports = {
publicPath: '/',
chunkFilename: 'async_[name].js'
},
- stats: {
- modules: false,
- children: false
- },
devServer: {
... | [Build] update webpack.dev.js | youzan_vant | train | js |
4e9fe8ed22985c69a127ed7718bee51bb61a8cb8 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -46,7 +46,8 @@ setup(
include_package_data=True,
package_data={
'estnltk': ['corpora/arvutustehnika_ja_andmetootlus/*.xml', 'corpora/*.json', 'java/res/*.*'],
- 'estnltk.tests': ['test_morph/*.csv', '... | Updated setup.py: added more resource files to installable package data | estnltk_estnltk | train | py |
1abb77fa6abdc04a2ea2064da9d02c5507d339ae | diff --git a/LiSE/LiSE/character.py b/LiSE/LiSE/character.py
index <HASH>..<HASH> 100644
--- a/LiSE/LiSE/character.py
+++ b/LiSE/LiSE/character.py
@@ -82,7 +82,6 @@ class AbstractCharacter(object):
pred = getatt('preportal')
adj = succ = edge = getatt('portal')
- graph = getatt('stat')
def do(self... | Unshadow the .graph attribute
I need that attribute. Gorm graphs keep all their stats there.
It can't be an alias. | LogicalDash_LiSE | train | py |
1728a8852c90a83982a4c5b05bf9e397cbd783c8 | diff --git a/spec/graphql/enum_type_spec.rb b/spec/graphql/enum_type_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/graphql/enum_type_spec.rb
+++ b/spec/graphql/enum_type_spec.rb
@@ -113,9 +113,13 @@ describe GraphQL::EnumType do
describe "validates enum value name uniqueness" do
it "raises an exception when ... | assert_raises doesnt take expected message as argument | rmosolgo_graphql-ruby | train | rb |
42f479d34d6e5d051948f747cd322315df1e1f7e | diff --git a/source/transform-for-format.js b/source/transform-for-format.js
index <HASH>..<HASH> 100644
--- a/source/transform-for-format.js
+++ b/source/transform-for-format.js
@@ -22,20 +22,28 @@ module.exports = function(format, opt) {
return function(argument) {
var blanks = {};
var path = opt['... | Pass title as option to HTML renderers | commonform_commonform-cli | train | js |
74fb9b7c4f5a1252e255071615bd514ddc927fd7 | diff --git a/www/email_composer.js b/www/email_composer.js
index <HASH>..<HASH> 100644
--- a/www/email_composer.js
+++ b/www/email_composer.js
@@ -27,7 +27,8 @@ var exec = require('cordova/exec'),
*/
exports.aliases = {
gmail: isAndroid ? 'com.google.android.gm' : 'googlegmail://co',
- outlook: isAndr... | Add alias for blackberry hub mail client | katzer_cordova-plugin-email-composer | train | js |
5f09a6c4f6a1d7d6e849aeae3f159d949ec72756 | diff --git a/main.go b/main.go
index <HASH>..<HASH> 100644
--- a/main.go
+++ b/main.go
@@ -64,7 +64,7 @@ func main() {
client.AddMetric(envelope)
case <-done:
postMetrics(client)
- break
+ return
}
}
} | return instead of breaking out of select in main.go
- break would break out of the select statement and not the for loop | cloudfoundry-attic_datadog-firehose-nozzle | train | go |
3ee78c56b778842ddd52d9f4afa7aabf40a9e4cd | diff --git a/webpack.config.js b/webpack.config.js
index <HASH>..<HASH> 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -136,5 +136,8 @@ module.exports = (env) => {
'numeral': 'numeral',
'__': '__',
},
+ watchOptions: {
+ ignored: ['**/.*.sw[po]'],
+ },
};
}; | webpack.config - add watchOptions to ignore vim swapfiles | ManageIQ_ui-components | train | js |
adc115b70981291f935bcab7ad8d873b77ffa3c7 | diff --git a/generators/generator-constants.js b/generators/generator-constants.js
index <HASH>..<HASH> 100644
--- a/generators/generator-constants.js
+++ b/generators/generator-constants.js
@@ -85,7 +85,7 @@ const DOCKER_GRAFANA = 'grafana/grafana:7.1.5';
const DOCKER_JENKINS = 'jenkins/jenkins:lts';
const DOCKER_SW... | Update quay.io/coreos/prometheus-operator docker image version to <I> | jhipster_generator-jhipster | train | js |
7d2661b8153220157b6e47eb6d89b030b2c1718d | diff --git a/sos/plugins/systemd.py b/sos/plugins/systemd.py
index <HASH>..<HASH> 100644
--- a/sos/plugins/systemd.py
+++ b/sos/plugins/systemd.py
@@ -70,5 +70,6 @@ class Systemd(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
"/etc/modules-load.d/*.conf",
"/etc/yum/protected.d/systemd.conf... | [systemd] avoid collecting /dev/null
Avoid "collecting" /dev/null as part of the systemd plugin.
In my testing that was the only plugin that brought it in.
Creating these character devices makes it harder to manage
(delete) extracted sosreports without more permissions.
This supersedes #<I> which removed the abilit... | sosreport_sos | train | py |
Subsets and Splits
Java Commits in Train Set
Queries for all entries where the diff_languages column is 'java', providing a filtered dataset but without deeper analysis.
Java Commits Test Data
Returns a subset of 5000 entries from the dataset where the programming language difference is Java, providing basic filtering for exploration.
Java Commits Sample
Retrieves the first 1,000 records where the 'diff_languages' column is 'java', providing limited insight into the specific data entries.
Java Commits Validation Sample
Retrieves a sample of entries from the validation dataset where the diff languages are Java, providing limited insight into specific Java-related data points.
Java Commits in Validation
This query retrieves a limited sample of entries from the validation dataset where the programming language difference is Java, providing basic filtering with minimal insight.
Java Commits Sample
This query retrieves a sample of 100 records where the 'diff_languages' is 'java', providing basic filtering but limited analytical value.
Java Commits Sample
Retrieves 100 samples where the language difference is Java, providing basic filtering but minimal analytical value.
Java Commits Sample
Retrieves 10 samples where the diff_languages column is 'java', providing basic examples of data entries with this specific language.
Java Commits Validation Sample
Retrieves 1,000 records where the differences in languages are marked as Java, providing a snapshot of that specific subset but limited to raw data.
Java Commits Sample
This query retrieves 1000 random samples from the dataset where the programming language is Java, offering limited insight beyond raw data.