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 |
|---|---|---|---|---|---|
db48491fa526f2fd3aad129fb49f4909d4ef9f73 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ with open('requirements.txt', 'r') as f:
setup(
name='EmbyPy',
- version='0.4.5.2',
+ version='0.5.0.0',
author='Andriy Zasypkin',
author_email='AndriyZasypkin@gmail.com',
descriptio... | update to <I>
- some jellyfin support
- obj.url is not a coroutine
- some fixes | andy29485_embypy | train | py |
a0b0bc9482d878f457f54959c6753e38d69058a3 | diff --git a/greenhouse/emulation/os.py b/greenhouse/emulation/os.py
index <HASH>..<HASH> 100644
--- a/greenhouse/emulation/os.py
+++ b/greenhouse/emulation/os.py
@@ -9,7 +9,7 @@ import sys
from .. import io, scheduler
-OS_TIMEOUT = 0.001
+OS_TIMEOUT = 0.01
def nonblocking_fd(fd): | slow down the polling of waitpid() and friends
this was taking a few %-worth of CPU just for the waiting, that's too
much and I suppose <I>ms is fine-grained enough | teepark_greenhouse | train | py |
033a91f9291d870d1a1d785ffcbd4b78bd71d789 | diff --git a/packages/react/src/components/ContentSwitcher/ContentSwitcher.js b/packages/react/src/components/ContentSwitcher/ContentSwitcher.js
index <HASH>..<HASH> 100644
--- a/packages/react/src/components/ContentSwitcher/ContentSwitcher.js
+++ b/packages/react/src/components/ContentSwitcher/ContentSwitcher.js
@@ -1... | fix(content-switcher): fix dap violations (#<I>) | carbon-design-system_carbon-components | train | js |
71192057ba4cc8796ec48444d41d941f49ea5602 | diff --git a/lib/reel/server.rb b/lib/reel/server.rb
index <HASH>..<HASH> 100644
--- a/lib/reel/server.rb
+++ b/lib/reel/server.rb
@@ -38,12 +38,6 @@ module Reel
loop { async.handle_connection @server.accept }
end
- def optimize(socket)
- if socket.is_a? TCPSocket
- socket.setsockopt(Socket... | remove optimize function
it isn't used and it doesn't work | celluloid_reel | train | rb |
ee0ef7dd244b6e1596d1af9739a4c4254ca11818 | diff --git a/scripts/tag-version.js b/scripts/tag-version.js
index <HASH>..<HASH> 100755
--- a/scripts/tag-version.js
+++ b/scripts/tag-version.js
@@ -20,7 +20,10 @@
// version for.
const fs = require('fs');
-const dirName = process.argv[2];
+let dirName = process.argv[2];
+if (dirName.endsWith('/')) {
+ dirName =... | Remove trailing slashes when tagging a version. (#<I>)
DEV | tensorflow_tfjs | train | js |
dab67dcd0888bcefa1d5ef007111df410b27feff | diff --git a/src/main/java/net/malisis/core/inventory/MalisisInventory.java b/src/main/java/net/malisis/core/inventory/MalisisInventory.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/malisis/core/inventory/MalisisInventory.java
+++ b/src/main/java/net/malisis/core/inventory/MalisisInventory.java
@@ -103,7 +10... | Changed slots in ctor to varargs | Ordinastie_MalisisCore | train | java |
8ad74d57b36863dcc5ba1ae3e091dddc56f1f702 | diff --git a/omp/__init__.py b/omp/__init__.py
index <HASH>..<HASH> 100644
--- a/omp/__init__.py
+++ b/omp/__init__.py
@@ -24,7 +24,7 @@ class omp(object):
for path in paths:
if libgomp_path:
break
- libgomp_path = ctypes.util.find_library(path+"gomp")
+ libg... | OpenMP shared library loading, fix bug introduced in 0b<I>
ctypes.util.find_library needs the lib prefix when using absolute
path. | serge-sans-paille_pythran | train | py |
41e8ef8e82a472e6d5e4d9046708e7a45abfb7ab | diff --git a/salt/client/ssh/ssh_py_shim.py b/salt/client/ssh/ssh_py_shim.py
index <HASH>..<HASH> 100644
--- a/salt/client/ssh/ssh_py_shim.py
+++ b/salt/client/ssh/ssh_py_shim.py
@@ -237,7 +237,7 @@ def get_executable():
continue
c_vn = tuple([int(x) for x in stdout.split(':')])
for ns in... | require same major version while minor is allowed to be higher | saltstack_salt | train | py |
a9c3efa4409ea7d19e36bec52f2003996ebd5e0d | diff --git a/src/Contracts/TemplateInterface.php b/src/Contracts/TemplateInterface.php
index <HASH>..<HASH> 100644
--- a/src/Contracts/TemplateInterface.php
+++ b/src/Contracts/TemplateInterface.php
@@ -71,6 +71,14 @@ interface TemplateInterface
public function data();
/**
+ * Set data for the template
... | Added setData() to TemplateInterface | FoilPHP_Foil | train | php |
0ad59c0b9850d529e065ed6cef153f9cd3643c41 | diff --git a/tests/__init__.py b/tests/__init__.py
index <HASH>..<HASH> 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -0,0 +1,2 @@
+# -*- coding: utf-8 -*-
+"""Main django-unfriendly test suite package.""" | Added package comment to test suite. | tomatohater_django-unfriendly | train | py |
b57b1f0222a3c7413ae1087cf1bff53f1d28c9da | diff --git a/src/Http/Request.php b/src/Http/Request.php
index <HASH>..<HASH> 100644
--- a/src/Http/Request.php
+++ b/src/Http/Request.php
@@ -24,4 +24,5 @@ class Request extends BaseRequest
return Arr::get($route[2], $param);
}
+
}
\ No newline at end of file | A small formatting fix in order to comply with the style guide. | laravel_lumen-framework | train | php |
5911e9e76f31c05788ddb3732ed537ce8e4af835 | diff --git a/src/SwaggerSchema.php b/src/SwaggerSchema.php
index <HASH>..<HASH> 100644
--- a/src/SwaggerSchema.php
+++ b/src/SwaggerSchema.php
@@ -103,6 +103,4 @@ class SwaggerSchema
return new SwaggerResponseBody($this, "$method $status $path", $structure['responses'][$status]);
}
-
-
} | Adjusts on SwaggerSchema | byjg_php-swagger-test | train | php |
4e28ba910e8183694520f2311ae6c9afa66d7185 | diff --git a/lib/skeletor/cli.rb b/lib/skeletor/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/skeletor/cli.rb
+++ b/lib/skeletor/cli.rb
@@ -4,7 +4,7 @@ module Skeletor
class CLI < Thor
- desc "build TEMPLATE", "Build project skeleton from TEMPLATE"
+ desc "build TEMPLATE [options]", "Build project ske... | Added options placement to CLI task descriptions | OiNutter_skeletor | train | rb |
690488dac92075546a3af26ef902a06c79d40ed9 | diff --git a/db_test.go b/db_test.go
index <HASH>..<HASH> 100644
--- a/db_test.go
+++ b/db_test.go
@@ -2025,11 +2025,9 @@ func ExampleDB_Subscribe() {
// a-key is now set to a-value
}
-func removeDir(dir string) func() {
- return func() {
- if err := os.RemoveAll(dir); err != nil {
- panic(err)
- }
+func remov... | Fix removeDir function in tests. (#<I>)
All the usages of removeDir only called the function itself and not
the returned func. This change does away with the returned func, so
calling removeDir will remove the badger directories during the test. | dgraph-io_badger | train | go |
ac21be7a426f21de4247df9af15584f13ddfe06d | diff --git a/spyder/plugins/variableexplorer/widgets/tests/test_collectioneditor.py b/spyder/plugins/variableexplorer/widgets/tests/test_collectioneditor.py
index <HASH>..<HASH> 100644
--- a/spyder/plugins/variableexplorer/widgets/tests/test_collectioneditor.py
+++ b/spyder/plugins/variableexplorer/widgets/tests/test_c... | CollectionsEditor: Fix test compatibility with Pandas <I> | spyder-ide_spyder | train | py |
cef93f97aea16fa4c3fd12e0de568862e5bc49d3 | diff --git a/admin/tool/generator/classes/course_backend.php b/admin/tool/generator/classes/course_backend.php
index <HASH>..<HASH> 100644
--- a/admin/tool/generator/classes/course_backend.php
+++ b/admin/tool/generator/classes/course_backend.php
@@ -253,7 +253,8 @@ class tool_generator_course_backend extends tool_gene... | MDL-<I> course: Add startdate for generated course
Added course start date for the course generated by the course
generator in order to prevent incorrect date calculations
(i.e. in assignment due dates) when the generated course is reset. | moodle_moodle | train | php |
39a4d1ad976494df054768150278d7557869c508 | diff --git a/lib/file-store.js b/lib/file-store.js
index <HASH>..<HASH> 100644
--- a/lib/file-store.js
+++ b/lib/file-store.js
@@ -171,6 +171,32 @@ FileCookieStore.prototype.isEmpty = function (){
return isEmptyObject(this.idx);
}
+FileCookieStore.prototype.getAllCookies = function(cb) {
+ var cookies = [];
+ ... | Added getAllCookies() method | ivanmarban_tough-cookie-file-store | train | js |
054e73ac227b8431769634e8a0eba4050a5ab8d2 | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -105,7 +105,7 @@ module.exports = function(grunt) {
doc: {
expand: true,
cwd: 'doc/',
- src: '*.md',
+ src: ['*.md', 'img/*.*'],
dest: 'build/doc/'
}
... | Copy documentation images in build
Previously only the markdown files were copied to the build folder, not
the related images.
Change-Id: Iae<I>c<I>b3eb<I>b8b5bf<I>f<I>e9ea<I>c | eclipsesource_tabris-js | train | js |
a303a1bbd44cccc4a26d77e162809c775bc6db23 | diff --git a/atws/connection.py b/atws/connection.py
index <HASH>..<HASH> 100644
--- a/atws/connection.py
+++ b/atws/connection.py
@@ -85,7 +85,7 @@ class RequestsTransport(transport.Transport):
# @todo: handle transient errors by retrying
# ideally, we should only have to raise on a few errors
# like de... | added retry limit for transport to constants | MattParr_python-atws | train | py |
87a74ae4a8f17b51be4d6db612fbb115fe0da547 | diff --git a/cli/lib/cli/commands/deployment.rb b/cli/lib/cli/commands/deployment.rb
index <HASH>..<HASH> 100644
--- a/cli/lib/cli/commands/deployment.rb
+++ b/cli/lib/cli/commands/deployment.rb
@@ -95,9 +95,9 @@ module Bosh::Cli::Command
err("No deployments") if deployments.size == 0
deployments_table ... | 'bosh deployments' now works with <I> | cloudfoundry_bosh | train | rb |
5ed0c370c230b75e8b870a572d71aa20874b886f | diff --git a/swf/src/main/java/com/venky/swf/plugins/background/core/AsyncTaskManager.java b/swf/src/main/java/com/venky/swf/plugins/background/core/AsyncTaskManager.java
index <HASH>..<HASH> 100644
--- a/swf/src/main/java/com/venky/swf/plugins/background/core/AsyncTaskManager.java
+++ b/swf/src/main/java/com/venky/swf... | Fixed the log to reflect after the task is removed from queue rather than beforee | venkatramanm_swf-all | train | java |
3eb40ac95ba3bbce682edcc5735e30766cea450e | diff --git a/test/unit/Query/SqlQuery.test.php b/test/unit/Query/SqlQuery.test.php
index <HASH>..<HASH> 100644
--- a/test/unit/Query/SqlQuery.test.php
+++ b/test/unit/Query/SqlQuery.test.php
@@ -152,6 +152,25 @@ public function testPlaceholderReplacement(
$this->assertEquals($uuid, $resultSet["testValue"]);
}
+/**... | Test comments with question marks, closes #3. | PhpGt_Database | train | php |
e67bc4367e1eae7ab21a3592063f8dca8703f74f | diff --git a/vk/groups.py b/vk/groups.py
index <HASH>..<HASH> 100644
--- a/vk/groups.py
+++ b/vk/groups.py
@@ -36,11 +36,12 @@ class Group(VKObject):
response = fetch("groups.getById", group_ids=self.id, fields="description")
return response[0]['description']
- def get_members(self):
+ def get... | Add params `sort` in `Group.get_members` | sgaynetdinov_py-vkontakte | train | py |
5412fa6935f0a8439bdcaafc7a395fa61d367f9f | diff --git a/utils.js b/utils.js
index <HASH>..<HASH> 100644
--- a/utils.js
+++ b/utils.js
@@ -157,7 +157,7 @@ exports.hasDelimiters = function (where, options) {
return false;
}
- function validCurlyLength(curly) {
+ function validCurlyLength (curly) {
let isClass = curly.charAt(options.left... | undo format changes made by IDE | arve0_markdown-it-attrs | train | js |
4af982369aa4ecbd801b97e3d06f25a086c8f0ad | diff --git a/environs/simplestreams/encode.go b/environs/simplestreams/encode.go
index <HASH>..<HASH> 100644
--- a/environs/simplestreams/encode.go
+++ b/environs/simplestreams/encode.go
@@ -20,9 +20,11 @@ func Encode(r io.Reader, armoredPrivateKey, passphrase string) ([]byte, error) {
}
privateKey := keyring[0].... | Only decrypt private key if it is encrypted | juju_juju | train | go |
b7240ac35dfce9cea8a298ee633ccd356c7dbeca | diff --git a/lib/chef/provider/systemd_unit.rb b/lib/chef/provider/systemd_unit.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/provider/systemd_unit.rb
+++ b/lib/chef/provider/systemd_unit.rb
@@ -194,7 +194,7 @@ class Chef
f.group "root"
f.mode "0644"
f.content new_resource.to_ini
- ... | provide verification escape-hatch & document internal vs user-managed properties | chef_chef | train | rb,rb |
6fe8113d547717eec2a3df045cbb1ea875f1be65 | diff --git a/template/app/view/ThumbList.js b/template/app/view/ThumbList.js
index <HASH>..<HASH> 100644
--- a/template/app/view/ThumbList.js
+++ b/template/app/view/ThumbList.js
@@ -61,8 +61,9 @@ Ext.define('Docs.view.ThumbList', {
'</tpl>',
'</div>'
]));
- // Hide itemTpl... | In ThumbList hide data config from parent class.
In <I> the View class also handles data attribute and things
will crash if we have our own special-purpose data in there. | senchalabs_jsduck | train | js |
1134fa1eb2b65096ae257f8d67c12d5b5c73a7a2 | diff --git a/dht_test.go b/dht_test.go
index <HASH>..<HASH> 100644
--- a/dht_test.go
+++ b/dht_test.go
@@ -154,7 +154,7 @@ func TestValueGetSet(t *testing.T) {
connect(t, ctx, dhtA, dhtB)
- log.Error("adding value on: ", dhtA.self)
+ log.Debug("adding value on: ", dhtA.self)
ctxT, cancel := context.WithTimeout(... | nit: be less noisy when testing
These aren't errors, don't log them as such. | libp2p_go-libp2p-kad-dht | train | go |
7dd4ebeb97aef90ae364dfd158b24979f12539ee | diff --git a/src/main/java/com/couchbase/lite/support/PersistentCookieStore.java b/src/main/java/com/couchbase/lite/support/PersistentCookieStore.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/couchbase/lite/support/PersistentCookieStore.java
+++ b/src/main/java/com/couchbase/lite/support/PersistentCookieStor... | Issue #<I> - ignore special doc fields like _id and _rev
This was causing exceptions in logs
<URL> | couchbase_couchbase-lite-java-core | train | java |
b0624381577dea9ca1fe27dccebc5b3dbec6389e | diff --git a/mythril/support/signatures.py b/mythril/support/signatures.py
index <HASH>..<HASH> 100644
--- a/mythril/support/signatures.py
+++ b/mythril/support/signatures.py
@@ -230,7 +230,7 @@ class SignatureDb(object):
"Compiler not found. Make sure that solc is installed and in PATH, or set the SOL... | Fix parsing from solc output | ConsenSys_mythril-classic | train | py |
c049180ae4d3653235c14bf5ce4f12ff9c80fd04 | diff --git a/openupgradelib/openupgrade.py b/openupgradelib/openupgrade.py
index <HASH>..<HASH> 100644
--- a/openupgradelib/openupgrade.py
+++ b/openupgradelib/openupgrade.py
@@ -736,6 +736,13 @@ def update_module_names(cr, namespec, merge_modules=False):
"WHERE module = %s AND name NOT IN "
... | [FIX] update_module_names: Rename non updated XML-ID occurences
Leaving untouched the non update ir.model.data entries, there are
problems loading the database when the migration ends, as some
of the related records can be assets, views...
Renaming the entries to an unique name (generated from ID), we
assure Odoo's u... | OCA_openupgradelib | train | py |
f0689fff4899453a0fed78af33b83600d79c2f99 | diff --git a/test/test.integration-all-services.js b/test/test.integration-all-services.js
index <HASH>..<HASH> 100644
--- a/test/test.integration-all-services.js
+++ b/test/test.integration-all-services.js
@@ -121,7 +121,7 @@ describe('integration-all-services', function() {
});
describe('functional_tradeoff_a... | boosting timeout of tradeoff analytics integration tests because some were failing with a timeout on occasion | watson-developer-cloud_node-sdk | train | js |
f3bb0e92bd57a45d2c0d5f14db188ece3db55e49 | diff --git a/registration/tests/test_hmac_workflow.py b/registration/tests/test_hmac_workflow.py
index <HASH>..<HASH> 100644
--- a/registration/tests/test_hmac_workflow.py
+++ b/registration/tests/test_hmac_workflow.py
@@ -126,9 +126,9 @@ class HMACViewTests(ActivationTestCase):
joined_timestamp - (setting... | Move time.time monkeypatch fully into the try/finally block. | ubernostrum_django-registration | train | py |
aaa5ebd62bac39395cdd4ddea51b903b19b495f6 | diff --git a/drools-persistence-jpa/src/main/java/org/drools/persistence/info/SessionInfo.java b/drools-persistence-jpa/src/main/java/org/drools/persistence/info/SessionInfo.java
index <HASH>..<HASH> 100644
--- a/drools-persistence-jpa/src/main/java/org/drools/persistence/info/SessionInfo.java
+++ b/drools-persistence-... | JBRULES-<I>: setter for binary representation of ksession | kiegroup_drools | train | java |
a62f8164ff2c3419ef07a08b0ff5ba3d8451e33a | diff --git a/src/frontend/org/voltdb/jdbc/JDBC4PreparedStatement.java b/src/frontend/org/voltdb/jdbc/JDBC4PreparedStatement.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/jdbc/JDBC4PreparedStatement.java
+++ b/src/frontend/org/voltdb/jdbc/JDBC4PreparedStatement.java
@@ -312,7 +312,7 @@ public class JDBC... | ENG-<I>: revert to master | VoltDB_voltdb | train | java |
eae315f4efa2bf3b683653ce69e4cc1c8d179121 | diff --git a/karma.conf.js b/karma.conf.js
index <HASH>..<HASH> 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -15,7 +15,7 @@ files = [
MOCHA_ADAPTER,
'bower_components/underscore/underscore.js',
'bower_components/backbone/backbone.js',
- 'backbone-filtered-collection.js',
+ 'backbone-paginated-collection... | Fixed karma config copied from other project | jmorrell_backbone-paginated-collection | train | js |
7502a142f811879c29a84ab48ff19ee1886b41ee | diff --git a/src/sap.m/src/sap/m/NavContainer.js b/src/sap.m/src/sap/m/NavContainer.js
index <HASH>..<HASH> 100644
--- a/src/sap.m/src/sap/m/NavContainer.js
+++ b/src/sap.m/src/sap/m/NavContainer.js
@@ -1541,7 +1541,8 @@ sap.ui.define(['jquery.sap.global', './library', 'sap/ui/core/Control', 'sap/ui/
};
NavContai... | [INTERNAL][FIX] sap.m.NavContainer - IOS flickering navigation problems
- when a page is that's not the currentPage is removed from the NavContainer there's no need to invalidate the control
BCP: <I>
Change-Id: I<I>c<I>fb<I>be<I>f<I>e0f<I>dc2cd4ee | SAP_openui5 | train | js |
20e4aa0466e7e635d3bdab61a5e616b14208846b | diff --git a/in_c/in_c2midi.py b/in_c/in_c2midi.py
index <HASH>..<HASH> 100755
--- a/in_c/in_c2midi.py
+++ b/in_c/in_c2midi.py
@@ -80,9 +80,10 @@ def one_file():
big_pattern = []
offset = 0
for num, pattern in enumerate(patterns):
- p = list(parse(pattern, offset))
- offset = p[-1][0] + p[-... | support for the (offset, -1, -1) added to support trailing rests. | jtauber_sebastian | train | py |
59c72611015d123d0b4edac05510a32cbcba8188 | diff --git a/txtorcon/torconfig.py b/txtorcon/torconfig.py
index <HASH>..<HASH> 100644
--- a/txtorcon/torconfig.py
+++ b/txtorcon/torconfig.py
@@ -17,6 +17,7 @@ from twisted.python import log
from twisted.internet import defer, error, protocol
from twisted.internet.interfaces import IReactorTime
from twisted.interne... | Issue <I>: Correctly identify unix ControlPort
That is, if a user passes a config with ControlPort set to
"unix:/some/path" then we need to connect to that (instead of
pretending it's always a port-number) | meejah_txtorcon | train | py |
0eb260c8fb3a77357bfdf1baa7af8d5f8ca937a9 | diff --git a/SoapClientAuth.php b/SoapClientAuth.php
index <HASH>..<HASH> 100644
--- a/SoapClientAuth.php
+++ b/SoapClientAuth.php
@@ -45,11 +45,18 @@ class SoapClientAuth extends SoapClient {
* @param array $options
*/
function SoapClientAuth($wsdl, $options = NULL) {
- stream_wrapper_unregister('http... | Don't register https is wrapper is unavailable
Fix from: <URL> | thybag_PHP-SharePoint-Lists-API | train | php |
d53d85d03ed44d73ee6f863921f051a5cb1bc224 | diff --git a/test/fixtures/generation/each.js b/test/fixtures/generation/each.js
index <HASH>..<HASH> 100644
--- a/test/fixtures/generation/each.js
+++ b/test/fixtures/generation/each.js
@@ -1,7 +1,5 @@
(function(){
-
- // The cornerstone, an each implementation.
- // Handles objects implementing forEach, arrays, an... | updating fixtures -- all tests now pass -- back to master | jashkenas_coffeescript | train | js,js |
81c8d9995f97096595880f01f3661a126059901f | diff --git a/src/HipChat/HipChat.php b/src/HipChat/HipChat.php
index <HASH>..<HASH> 100644
--- a/src/HipChat/HipChat.php
+++ b/src/HipChat/HipChat.php
@@ -50,6 +50,7 @@ class HipChat {
private $api_target;
private $auth_token;
private $verify_ssl = true;
+ private $proxy;
/**
* Creates a new API inte... | Add outbound proxy as a curl option | hipchat_hipchat-php | train | php |
3dec6c99d91f7add1369118e5260c590e1a38def | diff --git a/tests/jams_test.py b/tests/jams_test.py
index <HASH>..<HASH> 100644
--- a/tests/jams_test.py
+++ b/tests/jams_test.py
@@ -843,6 +843,20 @@ def test_annotation_trim():
duration=2.0)
assert ann_trim.data.equals(expected_ann.data)
+ # Make sure annotation and obse... | Implement tests for new adjust_times=True behavior | marl_jams | train | py |
935ee20b951e067c61360fef5d706dae17603652 | diff --git a/lxd/apparmor/instance_lxc.go b/lxd/apparmor/instance_lxc.go
index <HASH>..<HASH> 100644
--- a/lxd/apparmor/instance_lxc.go
+++ b/lxd/apparmor/instance_lxc.go
@@ -559,6 +559,14 @@ profile "{{ .name }}" flags=(attach_disconnected,mediate_deleted) {
mount options=(ro,remount,bind,nosuid,nodev),
mount op... | lxd/apparmor: Allow remount using noatime
This should improve mount namespace support in unprivileged containers
where the underlying FS is mounted with noatime. | lxc_lxd | train | go |
e089d6791adc54ee3b20bc6116c662665a69c804 | diff --git a/tests/WeiTest/ResponseTest.php b/tests/WeiTest/ResponseTest.php
index <HASH>..<HASH> 100644
--- a/tests/WeiTest/ResponseTest.php
+++ b/tests/WeiTest/ResponseTest.php
@@ -158,6 +158,15 @@ namespace WeiTest
$this->assertEquals('application/javascript', $this->object->getHeader('Content-Type')... | added test for send array as json | twinh_wei | train | php |
f58006eca169704bef99bd4b8a26d05829a61f4b | diff --git a/lib/landable/traffic/event_publisher.rb b/lib/landable/traffic/event_publisher.rb
index <HASH>..<HASH> 100644
--- a/lib/landable/traffic/event_publisher.rb
+++ b/lib/landable/traffic/event_publisher.rb
@@ -14,13 +14,14 @@ module Landable
@page_view = page_view
@visit = page_view.visit
-... | amqp_via_bunny:
cleaned up hound comments on EventPublisher | enova_landable | train | rb |
6bc37d33ba91a647c8a9772e2e8c7ef1adc6f6a1 | diff --git a/upup/pkg/fi/assetstore.go b/upup/pkg/fi/assetstore.go
index <HASH>..<HASH> 100644
--- a/upup/pkg/fi/assetstore.go
+++ b/upup/pkg/fi/assetstore.go
@@ -203,7 +203,10 @@ func (a *AssetStore) addURL(url string, hash *hashing.Hash) error {
glog.V(2).Infof("added asset %q for %q", asset.Key, asset.resource)
... | Adding capability to handle tgz files as archive files | kubernetes_kops | train | go |
0b26abeb9a273d576764949e61951335698bf9ba | diff --git a/model/DOMImporter.js b/model/DOMImporter.js
index <HASH>..<HASH> 100644
--- a/model/DOMImporter.js
+++ b/model/DOMImporter.js
@@ -438,6 +438,9 @@ export default class DOMImporter {
var startOffset = context.offset
const annoType = annoConverter.type
const AnnoClass = this.schema.... | Throw an exception if converter target class does not exist. | substance_substance | train | js |
2e46e76ae0847e6d8a1e640444003aa83b8449d7 | diff --git a/app/controllers/neighborly/balanced/bankaccount/accounts_controller.rb b/app/controllers/neighborly/balanced/bankaccount/accounts_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/neighborly/balanced/bankaccount/accounts_controller.rb
+++ b/app/controllers/neighborly/balanced/bankaccount/acco... | Improve comment on the code about #reload | FromUte_dune-balanced-bankaccount | train | rb |
e1f96c23490030322ae703102145757db6200000 | diff --git a/login/index.php b/login/index.php
index <HASH>..<HASH> 100644
--- a/login/index.php
+++ b/login/index.php
@@ -113,7 +113,10 @@
set_moodle_cookie($USER->username);
unset($SESSION->lang);
+ unset($SESSION->encoding);
+
$SESSION->justloggedin = true;
+ ... | SESSION encoding fix from STABLE (<I>) | moodle_moodle | train | php |
a514f9e6b3002f7cf7228781e022c707303c2e82 | diff --git a/tests/site_test.py b/tests/site_test.py
index <HASH>..<HASH> 100644
--- a/tests/site_test.py
+++ b/tests/site_test.py
@@ -191,7 +191,7 @@ class SiteCollectionFilterTestCase(unittest.TestCase):
numpy.testing.assert_array_equal(data_expanded, data_expanded_expected)
-class SitePickleTest(unittes... | tests/site: corrected a test case class name | gem_oq-engine | train | py |
e79b22c6fe60865d834c097b0f494bb54f46f8da | diff --git a/redisson/src/main/java/org/redisson/client/RedisClient.java b/redisson/src/main/java/org/redisson/client/RedisClient.java
index <HASH>..<HASH> 100644
--- a/redisson/src/main/java/org/redisson/client/RedisClient.java
+++ b/redisson/src/main/java/org/redisson/client/RedisClient.java
@@ -79,9 +79,9 @@ public ... | DefaultChannelGroup initialization fixed | redisson_redisson | train | java |
7bd49673cb744d007c0a1273732e03c98bff2b1e | diff --git a/tests/implemented.py b/tests/implemented.py
index <HASH>..<HASH> 100755
--- a/tests/implemented.py
+++ b/tests/implemented.py
@@ -4,6 +4,7 @@ import sys; sys.path.append("..")
from fireplace import cards
from fireplace.cards import debug, game, classic, naxxramas, gvg, removed
from fireplace.card import... | Tests: Treat vanilla minions as implemented
It's not perfect since we implement a lot more, but better than nothing. | jleclanche_fireplace | train | py |
2fe78ef0a13ac68d8d13b339cf9f4540fa6ed615 | diff --git a/lib/s3sync/cli.rb b/lib/s3sync/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/s3sync/cli.rb
+++ b/lib/s3sync/cli.rb
@@ -438,10 +438,7 @@ END
define_method :execute, lambda { |args|
# Connecting to amazon
- s3 = AWS::S3.new(
- :access_key_id => conf[:AWS_ACCESS_KEY_ID... | Removed checks for ENV vars and let the AWS SDK figure how to authenticate. | clarete_s3sync | train | rb,rb |
3cae3f5889368355149f1aedffd665906248f1ab | diff --git a/src/Models/Permission.php b/src/Models/Permission.php
index <HASH>..<HASH> 100644
--- a/src/Models/Permission.php
+++ b/src/Models/Permission.php
@@ -2,9 +2,9 @@
namespace Yajra\Acl\Models;
-use Illuminate\Support\Collection;
use Yajra\Acl\Traits\HasRole;
use Illuminate\Database\Eloquent\Model;
+use... | Fix eloquent collection. | yajra_laravel-acl | train | php |
f05829166a948d7502130292baedf51b954e233e | diff --git a/src/adapters/lokijs/worker/encodeQuery/index.js b/src/adapters/lokijs/worker/encodeQuery/index.js
index <HASH>..<HASH> 100644
--- a/src/adapters/lokijs/worker/encodeQuery/index.js
+++ b/src/adapters/lokijs/worker/encodeQuery/index.js
@@ -88,9 +88,15 @@ const noNullComparisons: OperatorFunction => OperatorF... | likeToRegexp allow only query in string | Nozbe_WatermelonDB | train | js |
967438d490ac741cd188999946b51d6b5b348acf | diff --git a/src/main/java/org/junit/Rule.java b/src/main/java/org/junit/Rule.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/junit/Rule.java
+++ b/src/main/java/org/junit/Rule.java
@@ -17,10 +17,11 @@ import java.lang.annotation.Target;
* then the {@link Test} method, and finally any {@link After} methods,
... | Fixed typo and added link to the RuleChain class | junit-team_junit4 | train | java |
0600dd14a6151242fb84e5d4a4eee19d5101b5dc | diff --git a/flask_unchained/bundles/sqlalchemy/hooks/register_models_hook.py b/flask_unchained/bundles/sqlalchemy/hooks/register_models_hook.py
index <HASH>..<HASH> 100644
--- a/flask_unchained/bundles/sqlalchemy/hooks/register_models_hook.py
+++ b/flask_unchained/bundles/sqlalchemy/hooks/register_models_hook.py
@@ -1... | be sure to register models before configuring the app | briancappello_flask-unchained | train | py |
1b89a567e0e7cdf53bb5b0103288553cca37bd92 | diff --git a/tests/GetSky/Phalcon/Bootstrap/BootsrapTest.php b/tests/GetSky/Phalcon/Bootstrap/BootsrapTest.php
index <HASH>..<HASH> 100644
--- a/tests/GetSky/Phalcon/Bootstrap/BootsrapTest.php
+++ b/tests/GetSky/Phalcon/Bootstrap/BootsrapTest.php
@@ -77,6 +77,21 @@ class BootstrapTest extends PHPUnit_Framework_TestCase... | Added test for PathNotFoundException | JimmDiGrizli_phalcon-bootstrap | train | php |
62ca74a401fde156bab632ca4dceff0f6655330b | diff --git a/test/streams/commentFilter.js b/test/streams/commentFilter.js
index <HASH>..<HASH> 100644
--- a/test/streams/commentFilter.js
+++ b/test/streams/commentFilter.js
@@ -56,6 +56,14 @@ describe('commentFilter', function() {
assert.equal(stream.hasNext(), false);
});
+ it('\'foo\' has a next', functi... | commentFilter stream has a next when not starting on a comment | voltrevo_parser | train | js |
a8066080a286ea81468cc7f47cddeb90dc1ca2b5 | diff --git a/h2o-py/h2o/connection.py b/h2o-py/h2o/connection.py
index <HASH>..<HASH> 100644
--- a/h2o-py/h2o/connection.py
+++ b/h2o-py/h2o/connection.py
@@ -13,7 +13,7 @@ import tempfile
import tabulate
import subprocess
import atexit
-import h2o
+import pkg_resources
from two_dim_table import H2OTwoDimTable
_... | correction. pkg_resources needed for runtime h2o-python version recognition | h2oai_h2o-3 | train | py |
bc97118dc391e6a1fe060df59f7ca79ef2717701 | diff --git a/src/connection/database/actions.js b/src/connection/database/actions.js
index <HASH>..<HASH> 100644
--- a/src/connection/database/actions.js
+++ b/src/connection/database/actions.js
@@ -325,7 +325,7 @@ function resolveSelectSingUpFieldCallbacks(id, x) {
if (resolvedOptions === undefined) {
... | Forgot return when resolving options causes error | auth0_lock | train | js |
dbd15ae9017f91cbe2255280cc9cd83c57a285be | diff --git a/mot/cl_routines/optimizing/base.py b/mot/cl_routines/optimizing/base.py
index <HASH>..<HASH> 100644
--- a/mot/cl_routines/optimizing/base.py
+++ b/mot/cl_routines/optimizing/base.py
@@ -376,8 +376,14 @@ class AbstractParallelOptimizerWorker(Worker):
''' + param_modifier.get_name() + '''((v... | Small update to allow the model to signal for bounds | cbclab_MOT | train | py |
2680e23b1589f686c53d080b1384ba67f5dc3326 | diff --git a/jsre/pretty.go b/jsre/pretty.go
index <HASH>..<HASH> 100644
--- a/jsre/pretty.go
+++ b/jsre/pretty.go
@@ -202,8 +202,17 @@ func (ctx ppctx) doOwnProperties(v otto.Value, f func(string)) {
Object, _ := ctx.vm.Object("Object")
rv, _ := Object.Call("getOwnPropertyNames", v)
gv, _ := rv.Export()
- for _,... | jsre: fix pretty printer for upstream otto change | ethereum_go-ethereum | train | go |
33b0990a3ad0bf63333ea225924b1c7216477d1f | diff --git a/commands/http/client.go b/commands/http/client.go
index <HASH>..<HASH> 100644
--- a/commands/http/client.go
+++ b/commands/http/client.go
@@ -11,7 +11,10 @@ import (
cmds "github.com/jbenet/go-ipfs/commands"
)
-const ApiPath = "/api/v0" // TODO: make configurable
+const (
+ ApiUrlFormat = "http://%s%s... | commands/http: Cleaner URL formation in client | ipfs_go-ipfs | train | go |
64c9493afc2d86e214f4e390c03e06d04fdc02bf | diff --git a/tests/k8s_test.go b/tests/k8s_test.go
index <HASH>..<HASH> 100644
--- a/tests/k8s_test.go
+++ b/tests/k8s_test.go
@@ -89,7 +89,6 @@ func setupFromConfigFile(ty, name string) []helper.Cmd {
return []helper.Cmd{
{"kubectl create -f " + k8sConfigFile(ty), true},
{makeCmdWaitUntilCreated(ty, name), tru... | tests: removed redundent sleep form k8s | skydive-project_skydive | train | go |
e3638f16177d0f4b2f7adbceb65c9b200c2a50dc | diff --git a/oide/apps/codeeditor/static/filetree.controller.js b/oide/apps/codeeditor/static/filetree.controller.js
index <HASH>..<HASH> 100644
--- a/oide/apps/codeeditor/static/filetree.controller.js
+++ b/oide/apps/codeeditor/static/filetree.controller.js
@@ -141,6 +141,13 @@ angular.module('oide.editor')
self.... | fix rename bug in filetree | SandstoneHPC_sandstone-ide | train | js |
c2af53a24e6a6bf61fe0f40e5448540dbe9e2d56 | diff --git a/lib/utils.js b/lib/utils.js
index <HASH>..<HASH> 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -33,6 +33,9 @@ function arrayString(val) {
else if(Array.isArray(val[i])) {
result = result + arrayString(val[i]);
}
+ else if(val[i] instanceof Buffer) {
+ result += '\\\\x' + val[i].t... | Properly insert buffers in arrays.
Before this commit, when someone tried to insert a Buffer into an array,
the library would try to escape it (by calling the `escapeElement` on
it), which would fail because buffers don't have a `replace` method. | brianc_node-postgres | train | js |
5543ffddf99750db03ee38ea72c503f2a7a85e16 | diff --git a/credhub/options.go b/credhub/options.go
index <HASH>..<HASH> 100644
--- a/credhub/options.go
+++ b/credhub/options.go
@@ -5,6 +5,7 @@ import (
"crypto/x509"
"errors"
"net/url"
+ "runtime"
"github.com/cloudfoundry-incubator/credhub-cli/credhub/auth"
)
@@ -38,11 +39,19 @@ func AuthURL(authURL stri... | Fix Windows support
Go doesn't currently support loading system certs on Windows
[#<I>] credhub CLI supports system trust stores | cloudfoundry-incubator_credhub-cli | train | go |
1f3dd8fd12e9e7f5bfa634d7a997ee9bcd49fb65 | diff --git a/spec/celluloid/supervision/supervisor_spec.rb b/spec/celluloid/supervision/supervisor_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/celluloid/supervision/supervisor_spec.rb
+++ b/spec/celluloid/supervision/supervisor_spec.rb
@@ -1,4 +1,4 @@
-RSpec.describe Celluloid::Supervisor, actor_system: :global do
+... | don't use deprecated class name in test | celluloid_celluloid | train | rb |
e8ce40108ab84db3f3511896517c8a798561d4cd | diff --git a/partridge/utilities.py b/partridge/utilities.py
index <HASH>..<HASH> 100644
--- a/partridge/utilities.py
+++ b/partridge/utilities.py
@@ -47,12 +47,15 @@ def remove_node_attributes(G, attributes):
return G
-def detect_encoding(f):
+def detect_encoding(f, limit=100):
u = UniversalDetector()
... | Limit the number of lines read to detect character encoding | remix_partridge | train | py |
de4205ba4654862eb2b0d1e39b8641bdb10f106e | diff --git a/src/parsy/__init__.py b/src/parsy/__init__.py
index <HASH>..<HASH> 100644
--- a/src/parsy/__init__.py
+++ b/src/parsy/__init__.py
@@ -8,10 +8,9 @@ from collections import namedtuple
def line_info_at(stream, index):
if index > len(stream):
raise ValueError("invalid index")
- prefix = strea... | Use dedicated str methods' arguments instead of creating a slice
Simplify column number calculation by removing special-casing
(since str.[r]find returns -1 when the substring is not found) | python-parsy_parsy | train | py |
79a1f68e21433991b32038b5dd03edf1e968f7f7 | diff --git a/test/src/test/java/hudson/tools/JDKInstallerTest.java b/test/src/test/java/hudson/tools/JDKInstallerTest.java
index <HASH>..<HASH> 100644
--- a/test/src/test/java/hudson/tools/JDKInstallerTest.java
+++ b/test/src/test/java/hudson/tools/JDKInstallerTest.java
@@ -122,6 +122,13 @@ public class JDKInstallerTes... | added a test for JDK7 installation | jenkinsci_jenkins | train | java |
83ea219857a0c1e29e4d4ccc482777e0e4658ff2 | diff --git a/src/Setting/Setting.php b/src/Setting/Setting.php
index <HASH>..<HASH> 100644
--- a/src/Setting/Setting.php
+++ b/src/Setting/Setting.php
@@ -202,7 +202,7 @@ class Setting
} else {
$setting = $this->storage->retrieve($key, $this->lang);
}
- return (coun... | Not sure why this is counting to see if it's not empty. Compatibility with php <I> is affected. | UniSharp_laravel-settings | train | php |
ca8dad4db4cb36904e3e6173d5993512e85d89fc | diff --git a/src/components/avatar/index.js b/src/components/avatar/index.js
index <HASH>..<HASH> 100644
--- a/src/components/avatar/index.js
+++ b/src/components/avatar/index.js
@@ -243,7 +243,7 @@ function createStyles({size, labelColor, imageSource}) {
width: 13.5,
padding: 1.5,
borderRadius: 99... | avater online indicator always having a white border (#<I>) | wix_react-native-ui-lib | train | js |
e12e268c9205273d6c197755a14300fc034daa84 | diff --git a/src/Administration/Resources/app/administration/src/core/service/api/check-out-sales-channel.api.service.js b/src/Administration/Resources/app/administration/src/core/service/api/check-out-sales-channel.api.service.js
index <HASH>..<HASH> 100644
--- a/src/Administration/Resources/app/administration/src/cor... | NTR - Correct checkout endpoint | shopware_platform | train | js |
e8a7c930c5142caa977550cdc389b4eb416f198b | diff --git a/lucid/optvis/style.py b/lucid/optvis/style.py
index <HASH>..<HASH> 100644
--- a/lucid/optvis/style.py
+++ b/lucid/optvis/style.py
@@ -27,7 +27,7 @@ class StyleLoss(object):
https://arxiv.org/abs/1508.06576
"""
- def __init__(self, style_layers, ema_decay=0.0,
+ def __init__(self, style_layers... | StyleLoss to support tensors as decay param. | tensorflow_lucid | train | py |
d5022380468e11a4ce20dea8b2a880ec18ed0453 | diff --git a/src/createSourceFactory.js b/src/createSourceFactory.js
index <HASH>..<HASH> 100644
--- a/src/createSourceFactory.js
+++ b/src/createSourceFactory.js
@@ -1,7 +1,7 @@
import invariant from 'invariant';
import isPlainObject from 'lodash/isPlainObject';
-const ALLOWED_SPEC_METHODS = ['canDrag', 'beginDrag... | Remove duplicated 'canDrag' of ALLOWED_SPEC_METHODS | react-dnd_react-dnd | train | js |
a29f5701b19cb5c36ad8493e02c8537ef9b667e9 | diff --git a/src/tests/dev.test.js b/src/tests/dev.test.js
index <HASH>..<HASH> 100644
--- a/src/tests/dev.test.js
+++ b/src/tests/dev.test.js
@@ -65,5 +65,5 @@ test.serial('netlify dev functions timeout', async t => {
})
test.after('cleanup', async t => {
- if (ps && ps.pid) process.kill(-ps.pid, 'SIGINT')
+ if ... | Dev tests: Cleanup process better | netlify_cli | train | js |
5a0a1b2881223fc8dab48f661e7a4d808c1242fb | diff --git a/oauth2.go b/oauth2.go
index <HASH>..<HASH> 100644
--- a/oauth2.go
+++ b/oauth2.go
@@ -308,7 +308,7 @@ func retrieveToken(ctx context.Context, c *Config, v url.Values) (*Token, error)
return nil, err
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
- if !bustedAuth && c.ClientSec... | oauth2: remove unnecessary ClientSecret check
Since the empty client secret is permitted by the OAuth <I> spec.
The check for clientSecret in retriveTokoen is unnecessary.
Redo #<I> | golang_oauth2 | train | go |
83265f98a8faf175ac0f42dc44d0d0f7027e0717 | diff --git a/django_extensions/management/commands/graph_models.py b/django_extensions/management/commands/graph_models.py
index <HASH>..<HASH> 100644
--- a/django_extensions/management/commands/graph_models.py
+++ b/django_extensions/management/commands/graph_models.py
@@ -49,7 +49,7 @@ class Command(BaseCommand):
... | Error message for PyGraphviz is fixed | django-extensions_django-extensions | train | py |
60598f4f5a70686fe6e8f15e383b89041c364b34 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -10,9 +10,6 @@ define(function (require) {
window.console.log.apply(console, args);
}
};
- // if (window.console && window.console.clear) {
- // window.console.clear();
- // }
// programmatically injecting this i... | (CH<I>) removes commented out feature | ExactTarget_fuelux | train | js |
ad927ebab4f6eb2787fc52a6269ed3ab09e693e9 | diff --git a/features/support/env.rb b/features/support/env.rb
index <HASH>..<HASH> 100644
--- a/features/support/env.rb
+++ b/features/support/env.rb
@@ -53,6 +53,7 @@ Before do
'GITHUB_USER' => nil,
'GITHUB_PASSWORD' => nil,
'GITHUB_HOST' => nil,
+ 'GITHUB_REPOSITORY' => nil,
'GIT_AUTHOR_NAME... | Nullify GITHUB_REPOSITORY while testing | github_hub | train | rb |
c90137cf1fac9ba3e80610bb438f96da04ed8f78 | diff --git a/salt/utils/docker/__init__.py b/salt/utils/docker/__init__.py
index <HASH>..<HASH> 100644
--- a/salt/utils/docker/__init__.py
+++ b/salt/utils/docker/__init__.py
@@ -225,7 +225,7 @@ def translate_input(**kwargs):
# format {'Type': log_driver, 'Config': log_opt}. So, we need to
# construct... | fix(docker): allow log_driver or log_opt
Docker allows either option without the other and the docks make no mention of both options being required. | saltstack_salt | train | py |
e49167a37e6ebb26590f525b8a9bd850503b8a2c | diff --git a/app/src/js/modules/stack.js b/app/src/js/modules/stack.js
index <HASH>..<HASH> 100644
--- a/app/src/js/modules/stack.js
+++ b/app/src/js/modules/stack.js
@@ -40,7 +40,7 @@
});
$(elements).on(
- 'shown.bs.modal',
+ 'loaded.bs.modal',
function (e) {
... | Init actions after the content has been loaded
Using "shown" was trying to bind events to elements that didn't exist
yet, we need to do it after the contents have loaded | bolt_bolt | train | js |
821a68234760423b96097d0a5fb92009db13cf78 | diff --git a/src/Entity/Entity.php b/src/Entity/Entity.php
index <HASH>..<HASH> 100644
--- a/src/Entity/Entity.php
+++ b/src/Entity/Entity.php
@@ -116,9 +116,9 @@ abstract class Entity
}
/**
- * An internal method that builds a list of available fields depending on context
+ * An internal method th... | Updated PHPDocs for Entity | bolt_bolt | train | php |
dcec9bb3a90dbe1fe357d8677a500527d79b529d | diff --git a/tests/integ/test_auto_ml.py b/tests/integ/test_auto_ml.py
index <HASH>..<HASH> 100644
--- a/tests/integ/test_auto_ml.py
+++ b/tests/integ/test_auto_ml.py
@@ -170,6 +170,7 @@ def test_auto_ml_describe_auto_ml_job(sagemaker_session):
},
"TargetAttributeName": TARGET_ATTRIBUTE_NAME,
... | fix: Automl integ describe job check (#<I>) | aws_sagemaker-python-sdk | train | py |
41263faaedb1c975ddef173f905586cbd151bae0 | diff --git a/src/drawer.canvas.js b/src/drawer.canvas.js
index <HASH>..<HASH> 100644
--- a/src/drawer.canvas.js
+++ b/src/drawer.canvas.js
@@ -19,6 +19,7 @@ WaveSurfer.util.extend(WaveSurfer.Drawer.Canvas, {
overflow: 'hidden',
width: '0',
height: this.params.height + ... | border-box on the progress waveform | katspaugh_wavesurfer.js | train | js |
e60587b3bb9eb12151c59771dc3c3cc7b8fb9a0f | diff --git a/libdokan/mount_test.go b/libdokan/mount_test.go
index <HASH>..<HASH> 100644
--- a/libdokan/mount_test.go
+++ b/libdokan/mount_test.go
@@ -1856,6 +1856,7 @@ func testForErrorText(t *testing.T, path string, expectedErr error,
}
func TestErrorFile(t *testing.T) {
+ t.Skip("Non-existent users are allowed o... | libdokan: Skip test because non-existent tlfs are allowed at the moment | keybase_client | train | go |
ff6f42405fa57b7d8984eaf4ff5316f251128c17 | diff --git a/salt/beacons/service.py b/salt/beacons/service.py
index <HASH>..<HASH> 100644
--- a/salt/beacons/service.py
+++ b/salt/beacons/service.py
@@ -127,7 +127,7 @@ def beacon(config):
service_config['emitatstartup'] = True
if 'onchangeonly' not in service_config:
service_config... | Fixing typo in service beacon. Removing unused import. | saltstack_salt | train | py,py |
6991d66987d6276665bff07259bf1ca464ffeab7 | diff --git a/lib/cli/render-help/general.js b/lib/cli/render-help/general.js
index <HASH>..<HASH> 100644
--- a/lib/cli/render-help/general.js
+++ b/lib/cli/render-help/general.js
@@ -36,9 +36,7 @@ module.exports = (loadedPlugins) => {
renderOptions(globalOptions, { shouldWriteModernOnly: true });
const allComma... | refactor(CLI): Do not filter commands by `lifecycleEvents` for help
Not clear at this point why such filter was added.
It's harmful for commands configured externally of `Serverless` class | serverless_serverless | train | js |
39ef2085b548a9a510504ff466e5bca9e23c926d | diff --git a/interaction.py b/interaction.py
index <HASH>..<HASH> 100644
--- a/interaction.py
+++ b/interaction.py
@@ -503,7 +503,7 @@ def modified_knox(events, delta, tau, permutations=99):
Read in the example data and create an instance of SpaceTimeEvents.
- >>> path = "../examples/burkitt"
+ >>> path ... | Adding setup.cfg which is a generic config file that can hold parameters for
other future objects as needed.
Fixing floating point precision tests in several modules. Values agreed on <I>
and <I> bit Python versions.
Using new pysal.examples.get_path() method for connecting doc and unit tests to
our example data. Devs... | pysal_giddy | train | py,py |
8a0d873fea29c1fe53ee47a71a04a5063c082b99 | diff --git a/lib/her/model/attributes.rb b/lib/her/model/attributes.rb
index <HASH>..<HASH> 100644
--- a/lib/her/model/attributes.rb
+++ b/lib/her/model/attributes.rb
@@ -69,7 +69,15 @@ module Her
# user.assign_attributes(name: "Lindsay")
# user.changes # => { :name => ["Tobias", "Lindsay"] }
d... | coerce new attributes to hash | remiprev_her | train | rb,rb |
43976684bae4c40d54ae94a8a9353a72e323bc9e | diff --git a/did/stats.py b/did/stats.py
index <HASH>..<HASH> 100644
--- a/did/stats.py
+++ b/did/stats.py
@@ -195,7 +195,9 @@ class UserStats(StatsGroup):
raise
def configured_plugins(self, config):
+ """ Create a StatsGroup instance for each configured plugin """
results = []
+... | Create a single StatsGroup for 'items' [fix #<I>] | psss_did | train | py |
79c00523c70b3695025ac3dc771a21fba66a8b1a | diff --git a/lib/lxc.rb b/lib/lxc.rb
index <HASH>..<HASH> 100644
--- a/lib/lxc.rb
+++ b/lib/lxc.rb
@@ -56,7 +56,7 @@ module LXC
names = LXC.run("ls").split("\n").uniq
if filter
- names.keep_if do |name|
+ names = names.select do |name|
if filter.kind_of?(Regexp)
name =~ filter ... | Make containers filter work on <I>, dont know why | sosedoff_lxc-ruby | train | rb |
cb21d844d97ff31eeb8dca8c2e66e9d85d14e0fe | diff --git a/_pytest/terminal.py b/_pytest/terminal.py
index <HASH>..<HASH> 100644
--- a/_pytest/terminal.py
+++ b/_pytest/terminal.py
@@ -527,7 +527,7 @@ def flatten(l):
def build_summary_stats_line(stats):
keys = ("failed passed skipped deselected "
- "xfailed xpassed warnings").split()
+ ... | Add missing "error" status to the list | vmalloc_dessert | train | py |
eee0a8592c3551ea17a1d7881ed092c0c5ffd591 | diff --git a/core/public/javascripts/refinery/admin.js b/core/public/javascripts/refinery/admin.js
index <HASH>..<HASH> 100644
--- a/core/public/javascripts/refinery/admin.js
+++ b/core/public/javascripts/refinery/admin.js
@@ -989,12 +989,7 @@ var list_reorder = {
}
, restore_controls: function(e) {
- if (li... | Closes GH-<I>. Removing this code fixed this issue. Tested on zebra and tree | refinery_refinerycms | train | js |
a171a35c896930a3dc806fb9f1f26155193311c9 | diff --git a/tests/unit/utils/vt_test.py b/tests/unit/utils/vt_test.py
index <HASH>..<HASH> 100644
--- a/tests/unit/utils/vt_test.py
+++ b/tests/unit/utils/vt_test.py
@@ -47,6 +47,7 @@ class VTTestCase(TestCase):
terminal.wait()
terminal.close()
+ @skipIf(True, 'Disabled until we can find out why... | Disable `test_issue_<I>_ptys_not_released`
Disabled until we can find out why this kills the tests suite with an exit code of <I> | saltstack_salt | train | py |
3e6fe04929eab93d28a3864feb0e48896adbbc0b | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -61,9 +61,13 @@ function parseTypeArray (type) {
function parseNumber (arg) {
var type = typeof arg
- if (type === 'string' && utils.isHexPrefixed(arg)) {
- return new BN(utils.stripHexPrefix(arg), 16... | Fix number parsing in base-<I> strings | ethereumjs_ethereumjs-abi | train | js |
3e03b143c616e2b89489345bbf6fd839c38cd16f | diff --git a/salt/modules/pushover_notify.py b/salt/modules/pushover_notify.py
index <HASH>..<HASH> 100644
--- a/salt/modules/pushover_notify.py
+++ b/salt/modules/pushover_notify.py
@@ -25,7 +25,6 @@ import requests
from requests.exceptions import ConnectionError
# pylint: disable=import-error,no-name-in-module,rede... | fixing some lint issues. | saltstack_salt | train | py,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.