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 |
|---|---|---|---|---|---|
51828f5d31d19645d4bb0df272ae40dc3be41150 | diff --git a/tests/calculators/hazard/event_based/core_next_test.py b/tests/calculators/hazard/event_based/core_next_test.py
index <HASH>..<HASH> 100644
--- a/tests/calculators/hazard/event_based/core_next_test.py
+++ b/tests/calculators/hazard/event_based/core_next_test.py
@@ -185,7 +185,6 @@ class EventBasedHazardCal... | tests/calcs/hazard/event_based/core_next_test:
pyflakes | gem_oq-engine | train | py |
cb0b49ecd6a62745341f61f3689386498851b217 | diff --git a/lib/runtime.js b/lib/runtime.js
index <HASH>..<HASH> 100644
--- a/lib/runtime.js
+++ b/lib/runtime.js
@@ -679,8 +679,14 @@ yr.selectNametest = function selectNametest(step, context, result) {
if (!data || typeof data !== 'object') { return result; }
if (step === '*') {
- for (step in dat... | monkey-patching `for .*` enumeration for nested arrays
arrays now enumerated using for (;;) instead of for-in | pasaran_yate | train | js |
eb2f5bab8eddc664809245f63fbc2a4e15c736c8 | diff --git a/packages/Todos/src/site/components/com_todos/views/todo/html/todo.php b/packages/Todos/src/site/components/com_todos/views/todo/html/todo.php
index <HASH>..<HASH> 100644
--- a/packages/Todos/src/site/components/com_todos/views/todo/html/todo.php
+++ b/packages/Todos/src/site/components/com_todos/views/todo... | added nl2br to display body | anahitasocial_anahita | train | php |
9cadeb8af2986f00134a5107e368f32b876aef91 | diff --git a/src/Symfony/Component/DependencyInjection/Tests/Loader/IniFileLoaderTest.php b/src/Symfony/Component/DependencyInjection/Tests/Loader/IniFileLoaderTest.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/DependencyInjection/Tests/Loader/IniFileLoaderTest.php
+++ b/src/Symfony/Component/DependencyIn... | Don't use return on Assert::markTestSkipped. | symfony_symfony | train | php |
4e0c71326eca6bd1ba9b80caf53dbc82d0e191f4 | diff --git a/salt/modules/smtp.py b/salt/modules/smtp.py
index <HASH>..<HASH> 100644
--- a/salt/modules/smtp.py
+++ b/salt/modules/smtp.py
@@ -39,7 +39,6 @@ Module for Sending Messages via SMTP
'''
import logging
import socket
-import sys
log = logging.getLogger(__name__)
diff --git a/salt/states/smtp.py b/salt... | fixing some pylint issues. | saltstack_salt | train | py,py |
e31558f29dc356ec529b1c9c605daef4306603c0 | diff --git a/src/Handler/DateHandler.php b/src/Handler/DateHandler.php
index <HASH>..<HASH> 100644
--- a/src/Handler/DateHandler.php
+++ b/src/Handler/DateHandler.php
@@ -35,12 +35,12 @@ class DateHandler implements SubscribingHandlerInterface
public static function getSubscribingMethods()
{
$methods... | Rename "deserialisation" variable | schmittjoh_serializer | train | php |
7b35a505ae628fccaaeff237844bd6a40164a14c | diff --git a/lib/xcode/install.rb b/lib/xcode/install.rb
index <HASH>..<HASH> 100644
--- a/lib/xcode/install.rb
+++ b/lib/xcode/install.rb
@@ -92,7 +92,8 @@ module XcodeInstall
`hdiutil mount -nobrowse -noverify #{dmgPath}`
puts 'Please authenticate for Xcode installation...'
- `sudo ditto "/Volumes/Xcode/X... | Actually support installing beta versions of Xcode | xcpretty_xcode-install | train | rb |
edee13bfe843421fc26617887ef93d9268462b30 | diff --git a/lang/en/moodle.php b/lang/en/moodle.php
index <HASH>..<HASH> 100644
--- a/lang/en/moodle.php
+++ b/lang/en/moodle.php
@@ -788,6 +788,8 @@ $string['passwordsenttext'] = ' <P>An email has been sent to your address at $
<P><B>Please check your email for your new password</B>
<P>The new password was ... | Added two old missing strings for scheduled backups. | moodle_moodle | train | php |
8a4473bc2e6223c950b1f20f6b626de9829ea098 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -5,7 +5,7 @@ var multiline = require('multiline');
var template = _.template(multiline(function() {
/*
- <a href="<%= url %>" title="<%= title %>" target="_self" class="fancybox">
+ <a href="<%= url %>" rel="grou... | added rel property to group images on the page into a gallery | ly-tools_gitbook-plugin-fancybox | train | js |
afea2efb53a55cda36e3f6a17f8de5f28261534f | diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -7,6 +7,8 @@ import (
"fmt"
"io"
"net/http"
+
+ "golang.org/x/net/http2"
)
const (
@@ -25,9 +27,8 @@ func NewClient(certificate tls.Certificate) *Client {
Certificates: []tls.Certificate{certificate},
}
tl... | Support older go until <I> is out of beta | sideshow_apns2 | train | go |
3d5a6db694af576f5ddfbb64ee9a2caefcc9ec6c | diff --git a/tests/unit/test_dependency_register.py b/tests/unit/test_dependency_register.py
index <HASH>..<HASH> 100644
--- a/tests/unit/test_dependency_register.py
+++ b/tests/unit/test_dependency_register.py
@@ -160,7 +160,7 @@ class Test_DependencyRegister_register:
def test__giving_resource_name_and_dependent... | tests: Fixes bug in previous commit: typo in function arg name.
The inner function give_unexpected_calls() had an argument 'expected_method_names' which should have been 'expected_methods_names'. | ncraike_fang | train | py |
1fdf734e18210e61de7036cb7d3e4b1070ac3bdb | diff --git a/examples/async_method_with_class.rb b/examples/async_method_with_class.rb
index <HASH>..<HASH> 100644
--- a/examples/async_method_with_class.rb
+++ b/examples/async_method_with_class.rb
@@ -5,10 +5,16 @@ include Eldritch::DSL
class BabysFirstClass
async def foo(arg)
puts "Hey I got: #{arg}"
+ s... | did the same simplification to class thread example | dotboris_eldritch | train | rb |
c705370d2d432cb8bb9298527f8cf6a53edf8930 | diff --git a/spec/bblib_spec.rb b/spec/bblib_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/bblib_spec.rb
+++ b/spec/bblib_spec.rb
@@ -16,4 +16,22 @@ describe BBLib do
expect(thash.hash_path('test.path')).to eq ['here']
end
+ it 'squishes hash' do
+ expect(thash.squish).to eq ({"a"=>1, "b"=>2, "c.d[0]"=>3... | Added more tests for hash path. | bblack16_bblib-ruby | train | rb |
75144354b58fdf7753c6edd3a73ff1fd37c62a92 | diff --git a/spec/public/associations_spec.rb b/spec/public/associations_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/public/associations_spec.rb
+++ b/spec/public/associations_spec.rb
@@ -28,6 +28,14 @@ describe DataMapper::Associations do
end
describe "#has" do
+ before do
+ class Car
+ def s... | Added Car.warn() method to silence warnings from has() in spec output | datamapper_dm-core | train | rb |
49d7f90ef4991bddea392ce1294bc952fc0e0b93 | diff --git a/seaworthy/stream/_timeout.py b/seaworthy/stream/_timeout.py
index <HASH>..<HASH> 100644
--- a/seaworthy/stream/_timeout.py
+++ b/seaworthy/stream/_timeout.py
@@ -33,5 +33,9 @@ def stream_timeout(stream, timeout, timeout_msg=None):
timer.cancel()
# Close the stream's underlying response ob... | Add a comment about closing the stream | praekeltfoundation_seaworthy | train | py |
a3cdf0b97cb3460c087c83533525df72d19f28a2 | diff --git a/tsdb/engine/bz1/bz1.go b/tsdb/engine/bz1/bz1.go
index <HASH>..<HASH> 100644
--- a/tsdb/engine/bz1/bz1.go
+++ b/tsdb/engine/bz1/bz1.go
@@ -170,9 +170,18 @@ func (e *Engine) LoadMetadataIndex(index *tsdb.DatabaseIndex, measurementFields
if err != nil {
return err
}
- for k, series := range series... | Ensure that metadata is always loaded out of the index in sorted order | influxdata_influxdb | train | go |
0c6ced115a834607f961046afbcbef75bea589f1 | diff --git a/src/RbacService.php b/src/RbacService.php
index <HASH>..<HASH> 100644
--- a/src/RbacService.php
+++ b/src/RbacService.php
@@ -105,7 +105,7 @@ class RbacService implements RbacServiceContract
{
$assignment = $this->overseer->getAssignment($subject->getSubjectId(), $subject->getSubjectName());
... | Add not null check before deleting assignment | digiaonline_lumen-rbac | train | php |
26bd3e8b11dd9ef9a8226341ed04cbc8a58776cc | diff --git a/api/client/container/exec.go b/api/client/container/exec.go
index <HASH>..<HASH> 100644
--- a/api/client/container/exec.go
+++ b/api/client/container/exec.go
@@ -28,7 +28,7 @@ func NewExecCommand(dockerCli *client.DockerCli) *cobra.Command {
var opts execOptions
cmd := &cobra.Command{
- Use: "exec... | Modify usage of docker exec command in exec.md | moby_moby | train | go |
0c81f294eff900523363a55498c24e9598b55436 | diff --git a/injector/wtf-injector-chrome/debugger.js b/injector/wtf-injector-chrome/debugger.js
index <HASH>..<HASH> 100644
--- a/injector/wtf-injector-chrome/debugger.js
+++ b/injector/wtf-injector-chrome/debugger.js
@@ -152,7 +152,7 @@ Debugger.prototype.beginListening_ = function() {
chrome.debugger.sendComman... | Making the timeline not record stack traces.
I feel like this didn't work previously, but it seems to now (back to <I>). | google_tracing-framework | train | js |
7901f5d1dc1ead04438f59042ebbe05ade95578a | diff --git a/talon/quotations.py b/talon/quotations.py
index <HASH>..<HASH> 100644
--- a/talon/quotations.py
+++ b/talon/quotations.py
@@ -280,10 +280,15 @@ def preprocess(msg_body, delimiter, content_type='text/plain'):
Replaces link brackets so that they couldn't be taken for quotation marker.
Splits line i... | Convert msg_body into unicode in preprocess. | mailgun_talon | train | py |
b194175f3e01b692ca1e66645b0af8d45ef0439f | diff --git a/aiohttp_json_rpc/client.py b/aiohttp_json_rpc/client.py
index <HASH>..<HASH> 100644
--- a/aiohttp_json_rpc/client.py
+++ b/aiohttp_json_rpc/client.py
@@ -99,6 +99,9 @@ class JsonRpcClient:
decode_error(msg)
)
+ except asyncio.CancelledError... | client: _message_worker: properly handle asyncio.CancelledError | pengutronix_aiohttp-json-rpc | train | py |
5f5ea7b549d11cedfb4a3fe779eb7807ba298460 | diff --git a/salt/utils/serializers/json.py b/salt/utils/serializers/json.py
index <HASH>..<HASH> 100644
--- a/salt/utils/serializers/json.py
+++ b/salt/utils/serializers/json.py
@@ -15,7 +15,7 @@ try:
except ImportError:
import json
-from six import string_types
+from salt.utils.six import string_types
from s... | Replaced module six in file /salt/utils/serializers/json.py | saltstack_salt | train | py |
076afcb14e8be635439e1689d8c3af2ffcfbce85 | diff --git a/addon/edit/closetag.js b/addon/edit/closetag.js
index <HASH>..<HASH> 100644
--- a/addon/edit/closetag.js
+++ b/addon/edit/closetag.js
@@ -131,7 +131,7 @@
function autoCloseSlash(cm) {
if (cm.getOption("disableInput")) return CodeMirror.Pass;
- autoCloseCurrent(cm, true);
+ return autoCloseC... | [closetag addon] Properly pass through return value for / key handler
So that the CodeMirror.Pass it will return actually ends up in the editor. | codemirror_CodeMirror | train | js |
a59ad0ec065777336a515ef847becadd53f135fe | diff --git a/ocpp/v15-soap/src/main/java/io/motown/ocpp/v15/soap/centralsystem/MotownCentralSystemService.java b/ocpp/v15-soap/src/main/java/io/motown/ocpp/v15/soap/centralsystem/MotownCentralSystemService.java
index <HASH>..<HASH> 100644
--- a/ocpp/v15-soap/src/main/java/io/motown/ocpp/v15/soap/centralsystem/MotownCen... | Added TODO in statusNotification mandatory field | motown-io_motown | train | java |
d5a3d085aa4529257e78a2c7defb430880086a75 | diff --git a/lib/middleware.js b/lib/middleware.js
index <HASH>..<HASH> 100644
--- a/lib/middleware.js
+++ b/lib/middleware.js
@@ -175,7 +175,10 @@ module.exports.log = function(req, res, next) {
};
const log = function() {
- let message = '@{status}, user: @{user}, req: \'@{request.method} @{request.url}\''... | add remote ip to request log | verdaccio_verdaccio | train | js |
8c06fff99609e9b70beca1779503c92e432fb3a3 | diff --git a/Manager/WishlistManager.php b/Manager/WishlistManager.php
index <HASH>..<HASH> 100755
--- a/Manager/WishlistManager.php
+++ b/Manager/WishlistManager.php
@@ -12,7 +12,7 @@
namespace WellCommerce\Bundle\WishlistBundle\Manager;
-use WellCommerce\Bundle\CoreBundle\Manager\AbstractManager;
+use WellCommer... | Moved manager to DoctrineBundle | WellCommerce_WishlistBundle | train | php,php |
5068d624730c0f2c675f1bf06a8c889e2670c375 | diff --git a/cake/libs/controller/controller.php b/cake/libs/controller/controller.php
index <HASH>..<HASH> 100644
--- a/cake/libs/controller/controller.php
+++ b/cake/libs/controller/controller.php
@@ -812,7 +812,7 @@ class Controller extends Object {
*/
public function render($action = null, $layout = null, $file... | Fixing issue that came up in rebasing. | cakephp_cakephp | train | php |
226930a90638696f924d8fd13b4be558ef233ff4 | diff --git a/src/Connection.php b/src/Connection.php
index <HASH>..<HASH> 100644
--- a/src/Connection.php
+++ b/src/Connection.php
@@ -86,8 +86,7 @@ class Connection extends \hiqdev\hiart\rest\Connection implements ConnectionInte
}
/**
- * Prepares authorization data.
- * If user is not authorized r... | moved getting auth data to User component in hipanel-core | hiqdev_hipanel-hiart | train | php |
822dc71eee7ec14a7b70ff204fcdfdb159737376 | diff --git a/tests/test_output_format.py b/tests/test_output_format.py
index <HASH>..<HASH> 100644
--- a/tests/test_output_format.py
+++ b/tests/test_output_format.py
@@ -153,3 +153,18 @@ def test_video():
return 'test'
assert hug.output_format.avi_video(FakeVideoWithSave()) == 'test'
+
+def test_on... | Add test for multiple output formats based on content type | hugapi_hug | train | py |
2a86c0007f4c2fe8b7cbc26993904fd16fc05f86 | diff --git a/grimoire/elk/git.py b/grimoire/elk/git.py
index <HASH>..<HASH> 100644
--- a/grimoire/elk/git.py
+++ b/grimoire/elk/git.py
@@ -222,11 +222,15 @@ class GitEnrich(Enrich):
# Other enrichment
eitem["repo_name"] = item["origin"]
# Number of files touched
- eitem["files"] = len(... | [enrich][git] Don't count files and lines in clean merges | chaoss_grimoirelab-elk | train | py |
4c4472147540c8fe1635d11f4bbbbfaed6e44be6 | diff --git a/great_expectations/render/renderer/notebook_renderer.py b/great_expectations/render/renderer/notebook_renderer.py
index <HASH>..<HASH> 100755
--- a/great_expectations/render/renderer/notebook_renderer.py
+++ b/great_expectations/render/renderer/notebook_renderer.py
@@ -1,6 +1,9 @@
import os
-import auto... | Shamefacedly suppress autopep8 | great-expectations_great_expectations | train | py |
ffdcc30a18e5934825f8ec75e5370e3fe8f067d4 | diff --git a/lib/developmentTeam.js b/lib/developmentTeam.js
index <HASH>..<HASH> 100644
--- a/lib/developmentTeam.js
+++ b/lib/developmentTeam.js
@@ -60,8 +60,13 @@ function getFromSearch() {
"name": "basedir",
"message": "Where should I search for your existing XCode projects?",
... | Fixing up validate to properly handle the tilde for home directory. | rhdeck_react-native-runios-withdevteam | train | js |
525b4536c8417a829c9c7a48f20a892ff01cac5d | diff --git a/base/edf/thread_test.go b/base/edf/thread_test.go
index <HASH>..<HASH> 100644
--- a/base/edf/thread_test.go
+++ b/base/edf/thread_test.go
@@ -55,5 +55,6 @@ func TestThreadFindAndWrite(T *testing.T) {
})
})
})
+ os.Remove("hello.db")
})
-}
\ No newline at end of file
+} | Delete tmpfile after edf test | sjwhitworth_golearn | train | go |
bac69cc2b02af95046ab78f034107018f45fa074 | diff --git a/src-modules/org/opencms/workplace/tools/modules/CmsCloneModule.java b/src-modules/org/opencms/workplace/tools/modules/CmsCloneModule.java
index <HASH>..<HASH> 100644
--- a/src-modules/org/opencms/workplace/tools/modules/CmsCloneModule.java
+++ b/src-modules/org/opencms/workplace/tools/modules/CmsCloneModul... | Improved stability of the module clone process. | alkacon_opencms-core | train | java |
81db1b20b7df301bc90c1a375644af5453fa541f | diff --git a/src/Orchestra/Control/Validation/Role.php b/src/Orchestra/Control/Validation/Role.php
index <HASH>..<HASH> 100644
--- a/src/Orchestra/Control/Validation/Role.php
+++ b/src/Orchestra/Control/Validation/Role.php
@@ -16,7 +16,6 @@ class Role extends Validator
/**
* On create validations.
*
- ... | remove some unrelevant docblock. | orchestral_control | train | php |
a16be1103863ed5afc38e152ee2229c7026f4c9c | diff --git a/core/server/api/authentication.js b/core/server/api/authentication.js
index <HASH>..<HASH> 100644
--- a/core/server/api/authentication.js
+++ b/core/server/api/authentication.js
@@ -287,6 +287,25 @@ authentication = {
}).then(function (result) {
return Promise.resolve({users: [result]... | re-added revoke method to authentication api
closes #<I>
- adds revoke api method back into code base | TryGhost_Ghost | train | js |
a8cdecd565e00b3de7da8539ef3d7b700b171631 | diff --git a/args4j/src/org/kohsuke/args4j/CmdLineParser.java b/args4j/src/org/kohsuke/args4j/CmdLineParser.java
index <HASH>..<HASH> 100644
--- a/args4j/src/org/kohsuke/args4j/CmdLineParser.java
+++ b/args4j/src/org/kohsuke/args4j/CmdLineParser.java
@@ -23,7 +23,6 @@ import java.util.ResourceBundle;
import java.util.... | a bit more graceful line breaking in usage printer | kohsuke_args4j | train | java |
b79cc8970e47b000f09dd916b7e2d7de9b87d15a | diff --git a/core/src/main/java/com/google/errorprone/bugpatterns/Finally.java b/core/src/main/java/com/google/errorprone/bugpatterns/Finally.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/google/errorprone/bugpatterns/Finally.java
+++ b/core/src/main/java/com/google/errorprone/bugpatterns/Finally.java
@... | Improve description for Finally check.
-------------
Created by MOE: <URL> | google_error-prone | train | java |
e5ccc551dcd66cf5ca23cc5c5dc8b7643e02d584 | diff --git a/client/driver/exec_linux.go b/client/driver/exec_linux.go
index <HASH>..<HASH> 100644
--- a/client/driver/exec_linux.go
+++ b/client/driver/exec_linux.go
@@ -13,6 +13,9 @@ const (
)
func (d *ExecDriver) Fingerprint(req *cstructs.FingerprintRequest, resp *cstructs.FingerprintResponse) error {
+ // The e... | add detected to more drivers where the driver is found but unusable | hashicorp_nomad | train | go,go |
ffca5556f5ada8e7ac626b2665723235ff95fe28 | diff --git a/src/main/java/org/mdkt/compiler/InMemoryJavaCompiler.java b/src/main/java/org/mdkt/compiler/InMemoryJavaCompiler.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/mdkt/compiler/InMemoryJavaCompiler.java
+++ b/src/main/java/org/mdkt/compiler/InMemoryJavaCompiler.java
@@ -30,6 +30,14 @@ public class I... | Added getter for classloader | trung_InMemoryJavaCompiler | train | java |
205cfe33cbd89dba8afc0c9be5f37bdbcc69ec70 | diff --git a/django_db_geventpool/utils.py b/django_db_geventpool/utils.py
index <HASH>..<HASH> 100644
--- a/django_db_geventpool/utils.py
+++ b/django_db_geventpool/utils.py
@@ -8,7 +8,8 @@ from django.core.signals import request_finished
def close_connection(f):
@wraps(f)
def wrapper(*args, **kwargs):
- ... | ensuring that connection is closed, even if error is raised | jneight_django-db-geventpool | train | py |
49df9e56887e7050da1c3488b189147c1ceb0369 | diff --git a/lib/archiving/archive_table.rb b/lib/archiving/archive_table.rb
index <HASH>..<HASH> 100644
--- a/lib/archiving/archive_table.rb
+++ b/lib/archiving/archive_table.rb
@@ -104,10 +104,11 @@ module Archiving
def archive!
transaction do
archived_instance = self.class.archive.new
- a... | Use attr. read and writer. Added an attr. safety check and fail on failed save() | firmafon_archiving | train | rb |
cb5f17c4b5c2a0fbe91aff13b2acd724930a54b7 | diff --git a/self_out_request.js b/self_out_request.js
index <HASH>..<HASH> 100644
--- a/self_out_request.js
+++ b/self_out_request.js
@@ -64,14 +64,18 @@ function makeInreq(id, options) {
self.inreq.headers = self.headers;
function onError(err) {
- if (called) return;
+ if (called) {
+ ... | linting: [self_out_request] comply with curly rule | uber_tchannel-node | train | js |
e33d3be488e97e7d1ef4c7ae701b0b0d61073c35 | diff --git a/tests/Doctrine/DBAL/Migrations/Tests/VersionTest.php b/tests/Doctrine/DBAL/Migrations/Tests/VersionTest.php
index <HASH>..<HASH> 100644
--- a/tests/Doctrine/DBAL/Migrations/Tests/VersionTest.php
+++ b/tests/Doctrine/DBAL/Migrations/Tests/VersionTest.php
@@ -504,6 +504,7 @@ class VersionTest extends Migrati... | Add a test for the object case | doctrine_migrations | train | php |
3b7a3c24f2749188edc4e7c86f15f2f60c250925 | diff --git a/generators/client/index.js b/generators/client/index.js
index <HASH>..<HASH> 100644
--- a/generators/client/index.js
+++ b/generators/client/index.js
@@ -150,6 +150,7 @@ module.exports = JhipsterClientGenerator.extend({
this.enableTranslation = this.config.get('enableTranslation'); // this is ... | set messageBroker when generating just the client | jhipster_generator-jhipster | train | js |
e11b02e63e83cf4ccdcbee4799868c1ec02906e3 | diff --git a/lib/inherited_resources/base_helpers.rb b/lib/inherited_resources/base_helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/inherited_resources/base_helpers.rb
+++ b/lib/inherited_resources/base_helpers.rb
@@ -231,6 +231,9 @@ module InheritedResources
# given and returns it. Otherwise returns nil.
... | Redirect to index action in show not defined | activeadmin_inherited_resources | train | rb |
7bef5b911e4f38bc66e5e2ad52ec5f3156d55d84 | diff --git a/armet/connectors/sqlalchemy/resources.py b/armet/connectors/sqlalchemy/resources.py
index <HASH>..<HASH> 100644
--- a/armet/connectors/sqlalchemy/resources.py
+++ b/armet/connectors/sqlalchemy/resources.py
@@ -174,6 +174,9 @@ class ModelResource(object):
self.session.add(target)
self.sess... | Refresh the target object to avoid inconsistencies with storage (In create) | armet_python-armet | train | py |
8b563b8a8609daaac81bd0402f678e867a9d0942 | diff --git a/executionserver/engine_lsf.js b/executionserver/engine_lsf.js
index <HASH>..<HASH> 100644
--- a/executionserver/engine_lsf.js
+++ b/executionserver/engine_lsf.js
@@ -9,7 +9,7 @@ module.exports = function (conf) {
var Joi = require('joi');
var executionmethods = require('./executionserver.methods')(co... | BUG: Add joi dependency as a parameter
In the execution server Joi is not installed for the server plugin | juanprietob_clusterpost | train | js,js |
5ef41e75ab45a078f583a735f2be786bad5b9e88 | diff --git a/src/geotiff.js b/src/geotiff.js
index <HASH>..<HASH> 100644
--- a/src/geotiff.js
+++ b/src/geotiff.js
@@ -212,8 +212,8 @@ GeoTIFF.prototype = {
this.dataView.getUint16(nextIFDByteOffset, this.littleEndian);
var fileDirectory = {};
-
- for (var i = byteOffset + (this.bigTiff ? 8 : 2... | Fixing wrong base offset, only the first IFD offset was used. | geotiffjs_geotiff.js | train | js |
90fcca29df390de244e2b16ef0279fd373482981 | diff --git a/lib/axlsx/util/validators.rb b/lib/axlsx/util/validators.rb
index <HASH>..<HASH> 100644
--- a/lib/axlsx/util/validators.rb
+++ b/lib/axlsx/util/validators.rb
@@ -297,4 +297,10 @@ module Axlsx
def self.validate_display_blanks_as(v)
RestrictionValidator.validate :display_blanks_as, [:gap, :span, :zer... | add validation for Worksheet#state and WorkbookView#visibility | randym_axlsx | train | rb |
c1593b26377f34a3f3d7baa02a5b7356f5cf1c1d | diff --git a/tests/functional/CreateCept.php b/tests/functional/CreateCept.php
index <HASH>..<HASH> 100644
--- a/tests/functional/CreateCept.php
+++ b/tests/functional/CreateCept.php
@@ -7,7 +7,8 @@ $I = new TestGuy($scenario);
$I->wantTo('ensure that user creation works');
$loginPage = LoginPage::openBy($I);
-$log... | refactored admin cepts | dektrium_yii2-user | train | php,php |
36ea8bd206778852afb375f109800ca557600b01 | diff --git a/gobblin-modules/gobblin-sql/src/main/java/org/apache/gobblin/source/jdbc/JdbcExtractor.java b/gobblin-modules/gobblin-sql/src/main/java/org/apache/gobblin/source/jdbc/JdbcExtractor.java
index <HASH>..<HASH> 100644
--- a/gobblin-modules/gobblin-sql/src/main/java/org/apache/gobblin/source/jdbc/JdbcExtractor.... | [GOBBLIN-<I>] Allow join operations if metadata check is disabled
Closes #<I> from jack-moseley/mysql-join-check | apache_incubator-gobblin | train | java |
bb61f23692b3781bad7df7ba838a61305b5a8e5f | diff --git a/pandas/tseries/period.py b/pandas/tseries/period.py
index <HASH>..<HASH> 100644
--- a/pandas/tseries/period.py
+++ b/pandas/tseries/period.py
@@ -50,7 +50,8 @@ class Period(PandasObject):
value : Period or compat.string_types, default None
The time period represented (e.g., '4Q2005')
fre... | CLN: tiny typo from GH<I>: Period() docstring | pandas-dev_pandas | train | py |
fcc981d25fe0a87f70f7b4e6a53974dc8cd69464 | diff --git a/src/org/zaproxy/zap/model/Context.java b/src/org/zaproxy/zap/model/Context.java
index <HASH>..<HASH> 100644
--- a/src/org/zaproxy/zap/model/Context.java
+++ b/src/org/zaproxy/zap/model/Context.java
@@ -35,6 +35,7 @@ import org.parosproxy.paros.model.Session;
import org.parosproxy.paros.model.SiteMap;
im... | Do not access EDT in daemon mode in Context class
Change Context class to not access the EDT if the view is not
initialised, when restructuring the sites tree. | zaproxy_zaproxy | train | java |
f4e178155daa57482c653c62daba1f630d70eba5 | diff --git a/lib/ardes/resources_controller.rb b/lib/ardes/resources_controller.rb
index <HASH>..<HASH> 100644
--- a/lib/ardes/resources_controller.rb
+++ b/lib/ardes/resources_controller.rb
@@ -824,6 +824,10 @@ module Ardes#:nodoc:
resource_specification.find ? resource_specification.find_custom(controller) :... | Adding explicit call to service.new, because of recent change in rails (see <URL>) | ianwhite_resources_controller | train | rb |
1d63519f6bbbcaeff7c6772799a7b96b864f34bd | diff --git a/config_test.go b/config_test.go
index <HASH>..<HASH> 100644
--- a/config_test.go
+++ b/config_test.go
@@ -62,6 +62,18 @@ var _ = Describe("JWTAuth Config", func() {
path /path1
path /path2
}`, true, nil},
+ {`jwt {
+ path /
+ except /login
+ except /test
+ allowroot
+ ... | add test for new config block directives | BTBurke_caddy-jwt | train | go |
9414ce4c5b429ecc05fcd3539f2c58a26bbfd4bd | diff --git a/polymodels/tests/test_managers.py b/polymodels/tests/test_managers.py
index <HASH>..<HASH> 100644
--- a/polymodels/tests/test_managers.py
+++ b/polymodels/tests/test_managers.py
@@ -52,7 +52,10 @@ class PolymorphicQuerySetTest(TestCase):
if django.VERSION < (1, 6):
animal_mammals_expe... | Use asserEqual instead of assertEquals | charettes_django-polymodels | train | py |
6b3533df001b81a3657f7374c7123ca392e93276 | diff --git a/solvebio/resource/manifest.py b/solvebio/resource/manifest.py
index <HASH>..<HASH> 100644
--- a/solvebio/resource/manifest.py
+++ b/solvebio/resource/manifest.py
@@ -62,6 +62,8 @@ class Manifest(object):
return bool(p.scheme)
for path in args:
+ path = os.path.expandpath(... | expanduser prior to checking ispath or isdir in manifest (fixes #<I>) | solvebio_solvebio-python | train | py |
7682b53d77b617c168e2f482c7f7c75c3c748fb1 | diff --git a/lib/engine_ws.js b/lib/engine_ws.js
index <HASH>..<HASH> 100644
--- a/lib/engine_ws.js
+++ b/lib/engine_ws.js
@@ -26,6 +26,10 @@ WSEngine.prototype.step = function (requestSpec, ee) {
return engineUtil.createLoopWithCount(requestSpec.count || -1, steps);
}
+ if (requestSpec.think) {
+ return ... | Enable 'think' in ws engine | artilleryio_artillery | train | js |
aa6b05f4b14b0144beb7f63b30593aaaaa23609c | diff --git a/config/webpack.config.js b/config/webpack.config.js
index <HASH>..<HASH> 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -1,4 +1,8 @@
var path = require('path');
+var webpack = require('webpack');
+
+
+
// for prod builds, we have already done AoT and AoT writes to disk
// so r... | chore(webpack): add optimize plugins | ionic-team_ionic-app-scripts | train | js |
639a65989a3136c8f24dd1242f79b2ecdf402a15 | diff --git a/cheroot/server.py b/cheroot/server.py
index <HASH>..<HASH> 100644
--- a/cheroot/server.py
+++ b/cheroot/server.py
@@ -1162,7 +1162,8 @@ class HTTPRequest:
# Override the decision to not close the connection if the connection
# manager doesn't have space for it.
if not self.close_... | server: don't use connections after it's closed | cherrypy_cheroot | train | py |
71fd9cee02df42b9e7a2827d295e1a1a4c413afb | diff --git a/lib/health-data-standards/models/svs/value_set.rb b/lib/health-data-standards/models/svs/value_set.rb
index <HASH>..<HASH> 100644
--- a/lib/health-data-standards/models/svs/value_set.rb
+++ b/lib/health-data-standards/models/svs/value_set.rb
@@ -11,7 +11,7 @@ module HealthDataStandards
scope :by_oid... | changing bad method call to correct one to add namespace to document | projectcypress_health-data-standards | train | rb |
b5ccdc24adcd197bf8b071e0a1039ad7919ae64e | diff --git a/src/main/java/com/aoindustries/util/i18n/EditableResourceBundle.java b/src/main/java/com/aoindustries/util/i18n/EditableResourceBundle.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/aoindustries/util/i18n/EditableResourceBundle.java
+++ b/src/main/java/com/aoindustries/util/i18n/EditableResourceB... | TODO: Decouple from aocode-public and use ao-fluent-html | aoindustries_aocode-public | train | java |
8acfa7fddfa01f4dec83fe51f4960969469826ef | diff --git a/lib/patternEmitter.js b/lib/patternEmitter.js
index <HASH>..<HASH> 100644
--- a/lib/patternEmitter.js
+++ b/lib/patternEmitter.js
@@ -258,20 +258,20 @@ PatternEmitter.prototype._getMatching = function(type) {
continue;
}
- if (regex.test(type)) {
- if (!matching) {
- matching =... | Small style fix in _getMatching | danielstjules_pattern-emitter | train | js |
71283ca9bdeecc921a3aa1ddf457a88e51e7b3a7 | diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/ServiceProvider.php
+++ b/src/ServiceProvider.php
@@ -5,7 +5,6 @@ namespace Freyo\Flysystem\QcloudCOSv4;
use Freyo\Flysystem\QcloudCOSv4\Plugins\GetUrl;
use Freyo\Flysystem\QcloudCOSv4\Plugins\PutRemoteFile;
use Frey... | Apply fixes from StyleCI (#<I>) | freyo_flysystem-qcloud-cos-v4 | train | php |
2f7e2ac5d12e2acb5aa88d226b0741ecd497eac2 | diff --git a/nyawc/Options.py b/nyawc/Options.py
index <HASH>..<HASH> 100644
--- a/nyawc/Options.py
+++ b/nyawc/Options.py
@@ -22,6 +22,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
+import os
import requests
from nyawc.CrawlerActions import CrawlerActions
@@ -... | Fixed reference to .semver file. | tijme_not-your-average-web-crawler | train | py |
0d195286c1a9db3105bcb1041cbaea4415bfadc2 | diff --git a/server/api.php b/server/api.php
index <HASH>..<HASH> 100755
--- a/server/api.php
+++ b/server/api.php
@@ -127,6 +127,14 @@ class api
$compiled = default_addons($phoxy_loading_module);
$this->default_addons = array_merge_recursive($compiled, $this->addons);
+
+ $this->default_addons =
+ ... | Allow module override its own addons | phoxy_phoxy | train | php |
67e79a4251a32ef900eb5344677642ffefc030f7 | diff --git a/graphite_api/utils.py b/graphite_api/utils.py
index <HASH>..<HASH> 100644
--- a/graphite_api/utils.py
+++ b/graphite_api/utils.py
@@ -30,9 +30,9 @@ class RequestParams(object):
if request.json and key in request.json:
return request.json[key]
if key in request.form:
- ... | Switch request.GET and request.POST to last-provided wins to match Django's request handling
Refs #<I> | brutasse_graphite-api | train | py |
26cdf63231fd1dd806199b0ab902100da8d5c406 | diff --git a/tests/scripts/thread-cert/border_router/MATN_15_ChangeOfPrimaryBBRTriggersRegistration.py b/tests/scripts/thread-cert/border_router/MATN_15_ChangeOfPrimaryBBRTriggersRegistration.py
index <HASH>..<HASH> 100644
--- a/tests/scripts/thread-cert/border_router/MATN_15_ChangeOfPrimaryBBRTriggersRegistration.py
+... | [github-actions] fix MATN_<I>_ChangeOfPrimaryBBRTriggersRegistration (#<I>) | openthread_openthread | train | py |
38894dc469bbdc8e382dcb9529390c0694c14adb | diff --git a/test/test_buffer.py b/test/test_buffer.py
index <HASH>..<HASH> 100644
--- a/test/test_buffer.py
+++ b/test/test_buffer.py
@@ -101,10 +101,10 @@ def test_number():
def test_name():
vim.command('new')
eq(vim.current.buffer.name, '')
- new_name = vim.eval('tempname()')
+ new_name = vim.eval('... | Resolve file name and silent write.
This fixes symlink issues on OS X for /var and /private/var
It also stops vim.command('w!') from blocking. | neovim_pynvim | train | py |
961a1c019ea700cbbc692686979b20fd2f489b0b | diff --git a/shared/simplestreams/simplestreams.go b/shared/simplestreams/simplestreams.go
index <HASH>..<HASH> 100644
--- a/shared/simplestreams/simplestreams.go
+++ b/shared/simplestreams/simplestreams.go
@@ -148,7 +148,7 @@ func (s *SimpleStreams) parseStream() (*Stream, error) {
return s.cachedStream, nil
}
... | shared/simplestreams: Fix stream's index download url
Since commit aef8f<I> ("shared/simplestreams: Implement caching support")
the index url contains double '/' between the host part and the path part,
so the resulting url looks like:
<URL>, by removing the prepended '/' passed to
s.cachedDownload(). | lxc_lxd | train | go |
e3dd2483bb78f3d4b80db6de5475ceb163155b80 | diff --git a/datasette/app.py b/datasette/app.py
index <HASH>..<HASH> 100644
--- a/datasette/app.py
+++ b/datasette/app.py
@@ -442,7 +442,7 @@ class RowTableShared(BaseView):
'<a href="/{database}-{database_hash}/{table}/{id}">{label}</a> <em>{id}</em>'.format(
... | Fixed quoting on foreign-key links to tables with spaces in name | simonw_datasette | train | py |
73bba437d35b6e15a67870e6d5f6c58d98ba0a04 | diff --git a/spec/unit/pdk/cli/util/command_redirector_spec.rb b/spec/unit/pdk/cli/util/command_redirector_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/pdk/cli/util/command_redirector_spec.rb
+++ b/spec/unit/pdk/cli/util/command_redirector_spec.rb
@@ -1,4 +1,5 @@
require 'spec_helper'
+require 'pdk/cli/util/com... | (maint) Ensure pdk/cli/util/command_redirector works standalone | puppetlabs_pdk | train | rb |
ddc1a4d66fcb670bcab9e019e77a6b8ed9ed0d2b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ def readme():
return f.read()
setup(name='pyTelegramBotAPI',
- version='1.4.1',
+ version='1.4.2',
description='Python Telegram bot api. ',
long_description=readme(),
aut... | Version Update.
Change log:
- Add disable_notification parameter.
- Added setters for message/inline/chosen-inline handlers. | eternnoir_pyTelegramBotAPI | train | py |
76a964d0c7b8dc17641e258358da8a91adb6d92f | diff --git a/init.js b/init.js
index <HASH>..<HASH> 100644
--- a/init.js
+++ b/init.js
@@ -10,7 +10,7 @@ var S_loadSyncScript=function(path){
};
//http://kangax.github.io/es5-compat-table/
//http://kangax.github.io/es5-compat-table/es6/ Promise: FF >= 30, Chrome >= 33
-if (!Object.keys || !(typeof Promise !== 'undef... | <I> Update init.js
In Chromium <I> Promise is defined but String.prototype.startsWith is still not | christophehurpeau_springbokjs-shim | train | js |
9282b51c246db8654e8b08e1c3bb5744a9affede | diff --git a/search_queries_query_string.go b/search_queries_query_string.go
index <HASH>..<HASH> 100644
--- a/search_queries_query_string.go
+++ b/search_queries_query_string.go
@@ -201,6 +201,10 @@ func (q QueryStringQuery) Source() interface{} {
query["tie_breaker"] = *q.tieBreaker
}
+ if q.useDisMax != nil {... | Forgot that use_dis_max | olivere_elastic | train | go |
0cd3a12569b0d64adfe31baccd1b2b33d181523c | diff --git a/grails-core/src/main/groovy/org/grails/compiler/injection/GrailsAwareTraitInjectionOperation.java b/grails-core/src/main/groovy/org/grails/compiler/injection/GrailsAwareTraitInjectionOperation.java
index <HASH>..<HASH> 100644
--- a/grails-core/src/main/groovy/org/grails/compiler/injection/GrailsAwareTraitI... | Use declaresInterface instead of implementsInterface
This allows subclasses to implement the same trait as their super classes which allows them to get their own copies of static methods. grails-data-mapping needs this. | grails_grails-core | train | java |
1bbb339e7e0321042cb57f794d646067269f6937 | diff --git a/go/vt/sqlparser/token.go b/go/vt/sqlparser/token.go
index <HASH>..<HASH> 100644
--- a/go/vt/sqlparser/token.go
+++ b/go/vt/sqlparser/token.go
@@ -257,6 +257,7 @@ var keywords = map[string]int{
"lines": LINES,
"linestring": LINESTRING,
"load": LOAD,
+ "local": ... | Added tokens LOW_PRIORITY and LOCAL | vitessio_vitess | train | go |
d96e0aa61e4d658e28a458b04e907155f2504f64 | diff --git a/pullv/repo/base.py b/pullv/repo/base.py
index <HASH>..<HASH> 100644
--- a/pullv/repo/base.py
+++ b/pullv/repo/base.py
@@ -47,7 +47,7 @@ class BaseRepo(collections.MutableMapping, RepoLoggingAdapter):
"""Base class for repositories.
Extends :py:class:`collections.MutableMapping` and
- :py:cla... | Typo in intersphinx link to logging.LoggerAdapter. | vcs-python_vcspull | train | py |
e14905bfaab9cf0afd27972ef772f6652e50b0ed | diff --git a/rst2ansi/ansi.py b/rst2ansi/ansi.py
index <HASH>..<HASH> 100644
--- a/rst2ansi/ansi.py
+++ b/rst2ansi/ansi.py
@@ -208,7 +208,7 @@ class ANSITranslator(nodes.NodeVisitor):
def visit_document(self, node):
self.push_ctx()
- def depart_document(self, node):
+ def _print_references(self):
self.... | Refactored reference list into its own function | Snaipe_python-rst2ansi | train | py |
615acf60038a831f3b778622f067c699e36017bb | diff --git a/radiotool/algorithms/retarget.py b/radiotool/algorithms/retarget.py
index <HASH>..<HASH> 100644
--- a/radiotool/algorithms/retarget.py
+++ b/radiotool/algorithms/retarget.py
@@ -258,8 +258,8 @@ def retarget(song, duration, music_labels=None, out_labels=None, out_penalty=Non
first_pause = i
... | change defaults for max and min music beats | ucbvislab_radiotool | train | py |
1f02553ead28676a59d22ce5629233d0ac3b43b0 | diff --git a/tests/jenkins.py b/tests/jenkins.py
index <HASH>..<HASH> 100644
--- a/tests/jenkins.py
+++ b/tests/jenkins.py
@@ -62,6 +62,9 @@ def run(platform, provider, commit, clean):
sys.stdout.flush()
sys.exit(proc.returncode)
+ print('VM Bootstrapped. Exit code: {0}'.format(proc.returncode))
... | Some more information about the bootstrap process. | saltstack_salt | train | py |
1e2d8ec9cfe9368b9311ab27dcbe957ad60d6521 | diff --git a/pandas/core/groupby.py b/pandas/core/groupby.py
index <HASH>..<HASH> 100644
--- a/pandas/core/groupby.py
+++ b/pandas/core/groupby.py
@@ -1579,7 +1579,7 @@ class NDFrameGroupBy(GroupBy):
if self.axis != 0: # pragma: no cover
raise ValueError('Can only pass dict with axis=0')
... | ENH: don't make unnecessary data copy in groupby | pandas-dev_pandas | train | py |
6ada11ed98d74a2ce96bc4f0d96b51463fcfa348 | diff --git a/karma.conf.js b/karma.conf.js
index <HASH>..<HASH> 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -2,6 +2,7 @@ process.env.ethTest = 'BasicTests'
module.exports = function (config) {
config.set({
+ browserNoActivityTimeout: 60000,
frameworks: ['browserify', 'detectBrowsers', 'tap'],
f... | uped the browser timeout for travis | ethereumjs_ethereumjs-block | train | js |
342b9abefaaa70c30ca9d996feb7d537ca8f193a | diff --git a/src/Sniffs/ForbiddenSuperGlobalSniff.php b/src/Sniffs/ForbiddenSuperGlobalSniff.php
index <HASH>..<HASH> 100644
--- a/src/Sniffs/ForbiddenSuperGlobalSniff.php
+++ b/src/Sniffs/ForbiddenSuperGlobalSniff.php
@@ -16,7 +16,9 @@ final class ForbiddenSuperGlobalSniff implements Sniff
/**
* @var string... | ForbiddenSuperGlobalSniff - add few missing global vars | shopsys_coding-standards | train | php |
4452f9c4ac87e99d74cc650e6af21b749f249b17 | diff --git a/tests/Integration/WhereConstraints/WhereConstraintsDirectiveTest.php b/tests/Integration/WhereConstraints/WhereConstraintsDirectiveTest.php
index <HASH>..<HASH> 100644
--- a/tests/Integration/WhereConstraints/WhereConstraintsDirectiveTest.php
+++ b/tests/Integration/WhereConstraints/WhereConstraintsDirecti... | Fix WhereConstraintsDirectiveTest.php | nuwave_lighthouse | train | php |
639cc0222cf670df2355fb10332313e618738b7a | diff --git a/javascript/HtmlEditorField.js b/javascript/HtmlEditorField.js
index <HASH>..<HASH> 100644
--- a/javascript/HtmlEditorField.js
+++ b/javascript/HtmlEditorField.js
@@ -874,7 +874,7 @@ ss.editorWrappers['default'] = ss.editorWrappers.tinyMCE;
//get the uploaded file ID when this event triggers, signalin... | BUG Fix insert media form inserting images from other UploadFields (fixes #<I>)
The insert media form would pick up unwanted images from other
UploadFields. Limiting where it is looking to only the closest form
fixes this. | silverstripe_silverstripe-framework | train | js |
9e10fd59d6a9c7f0abe7fb25e21b43346169481d | diff --git a/lib/demo.js b/lib/demo.js
index <HASH>..<HASH> 100644
--- a/lib/demo.js
+++ b/lib/demo.js
@@ -15,6 +15,6 @@ export class Demo {
this.template = template || path.resolve(__dirname, 'default-template.jade');
const specs = opt.specs && path.resolve(this.path, opt.specs);
- this.specs = specs ||... | rename default spec folder from specs to spec | lyweiwei_democase | train | js |
01718b25f2c3aaa8be14a8c4c59f4cb3a7a21814 | diff --git a/yelp_kafka_tool/kafka_consumer_manager/commands/offset_manager.py b/yelp_kafka_tool/kafka_consumer_manager/commands/offset_manager.py
index <HASH>..<HASH> 100644
--- a/yelp_kafka_tool/kafka_consumer_manager/commands/offset_manager.py
+++ b/yelp_kafka_tool/kafka_consumer_manager/commands/offset_manager.py
@... | KAFKA-<I>: Add print out of cluster name before getting information about a topic. | Yelp_kafka-utils | train | py |
d453a6ba142129e1b006c42e233485725bd883b1 | diff --git a/packages/keyhub-vault-web/src/vault.js b/packages/keyhub-vault-web/src/vault.js
index <HASH>..<HASH> 100644
--- a/packages/keyhub-vault-web/src/vault.js
+++ b/packages/keyhub-vault-web/src/vault.js
@@ -417,6 +417,7 @@ export default function loadVault(window, document, mainElement) {
// callba... | return the address to main app on newKey action | BlockchainZoo_keyhub-vault | train | js |
1ad907f262359c67c90ccf57db084a339fa9f1bd | diff --git a/openquake/calculators/classical.py b/openquake/calculators/classical.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/classical.py
+++ b/openquake/calculators/classical.py
@@ -244,8 +244,8 @@ class ClassicalCalculator(base.HazardCalculator):
oq = self.oqparam
N = len(self.siteco... | Removed maxweight limit to 1E6 [skip CI] | gem_oq-engine | train | py |
b6d58c3953088c96e36c0f40ad7c9c04befa468d | diff --git a/www/src/py_dom.js b/www/src/py_dom.js
index <HASH>..<HASH> 100644
--- a/www/src/py_dom.js
+++ b/www/src/py_dom.js
@@ -284,7 +284,7 @@ DOMEvent.__new__ = function(cls, evt_name){
function dom2svg(svg_elt, coords){
// Used to compute the mouse position relatively to the upper left corner
- // of a... | Add attributes to DOMEvent attributes that are functions | brython-dev_brython | train | js |
e930499a49396306921590f6c69cf2537e025a37 | diff --git a/container/__init__.py b/container/__init__.py
index <HASH>..<HASH> 100644
--- a/container/__init__.py
+++ b/container/__init__.py
@@ -5,4 +5,4 @@ import logging
logger = logging.getLogger(__name__)
-__version__ = '0.1.0'
+__version__ = '0.2.0-pre' | Increment version to <I>-pre | ansible_ansible-container | train | py |
a7018a7e2f1b1007271bf73741c2dd43c50095a4 | diff --git a/gcalcli/argparsers.py b/gcalcli/argparsers.py
index <HASH>..<HASH> 100644
--- a/gcalcli/argparsers.py
+++ b/gcalcli/argparsers.py
@@ -283,7 +283,7 @@ def get_argument_parser():
"time part of the --when will be ignored.")
add.add_argument(
"--noprompt", action="store_false", d... | now the help message is correct for noprompt | insanum_gcalcli | train | py |
a7dc666739d65fa0240ceb1898896bc190bf8115 | diff --git a/src/ducks/registry/index.js b/src/ducks/registry/index.js
index <HASH>..<HASH> 100644
--- a/src/ducks/registry/index.js
+++ b/src/ducks/registry/index.js
@@ -83,15 +83,25 @@ export const initializeRegistry = konnectors => {
.then(context => {
const konnectorsToExclude =
!!context... | feat: filter konnectors categories based on environment ✨ | cozy_cozy-home | train | js |
68bda62b30c90bf80cfc77c78f13ef55e9c7b593 | diff --git a/lib/views/base-line-graph.js b/lib/views/base-line-graph.js
index <HASH>..<HASH> 100644
--- a/lib/views/base-line-graph.js
+++ b/lib/views/base-line-graph.js
@@ -48,9 +48,7 @@ BaseLineGraph.prototype.setLayout = function (layoutConfig) {
// Should be called by child's onEvent handler
BaseLineGraph.prot... | remove n/a branch in base line graph
values is always kept at length of maxLimit | FormidableLabs_nodejs-dashboard | train | js |
43ffdd479925a3120ce44a6f2701db5294c74779 | diff --git a/node_api_client.go b/node_api_client.go
index <HASH>..<HASH> 100644
--- a/node_api_client.go
+++ b/node_api_client.go
@@ -262,6 +262,8 @@ type NodeInfoResponse struct {
IsHealthy bool `json:"isHealthy"`
// The human friendly name of the network ID on which the node operates on.
NetworkID string `json... | Add minPowScore to node info (#<I>) | iotaledger_iota.go | train | go,go |
0bf712a20e02b35f56978c88181f8606f093e548 | diff --git a/pyblish_qml/host.py b/pyblish_qml/host.py
index <HASH>..<HASH> 100644
--- a/pyblish_qml/host.py
+++ b/pyblish_qml/host.py
@@ -677,7 +677,10 @@ def _install_blender(use_threaded_wrapper):
wm = context.window_manager
wm.event_timer_remove(self._timer)
# Quit the Pyblish... | Explicitly call `proxy.quit()` to make clear the proxy needs to quit | pyblish_pyblish-qml | train | py |
c64b5338cc2fe3ba311a19548ec432842dbdf91b | diff --git a/lib/janus_gateway/plugin/rtpbroadcast/mountpoint.rb b/lib/janus_gateway/plugin/rtpbroadcast/mountpoint.rb
index <HASH>..<HASH> 100644
--- a/lib/janus_gateway/plugin/rtpbroadcast/mountpoint.rb
+++ b/lib/janus_gateway/plugin/rtpbroadcast/mountpoint.rb
@@ -6,10 +6,10 @@ module JanusGateway::Plugin
# @par... | Renamed mountpoint_data with channel_data | cargomedia_janus-gateway-ruby | train | rb |
b73e574eb2989240cb871193ddf3a3c645065bbd | diff --git a/lib/3scale_toolbox/entities/service.rb b/lib/3scale_toolbox/entities/service.rb
index <HASH>..<HASH> 100644
--- a/lib/3scale_toolbox/entities/service.rb
+++ b/lib/3scale_toolbox/entities/service.rb
@@ -220,7 +220,12 @@ module ThreeScaleToolbox
end
def policies
- remote.show_policies ... | product to_crd policy chain | 3scale_3scale_toolbox | train | rb |
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.