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 |
|---|---|---|---|---|---|
d107a4dbeac95317b89a544cbc4c56d92c479a00 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -5,15 +5,13 @@
from setuptools import setup, find_packages
-with open('README.md') as readme_file:
+with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
... | changed the Readme back to .rst | mpibpc-mroose_hx711 | train | py |
0a5ba7faa40a604fffce135c09e20cf2042cb288 | diff --git a/spyderlib/utils/external/path.py b/spyderlib/utils/external/path.py
index <HASH>..<HASH> 100644
--- a/spyderlib/utils/external/path.py
+++ b/spyderlib/utils/external/path.py
@@ -62,7 +62,6 @@ _base = str
_getcwd = os.getcwd
try:
if os.path.supports_unicode_filenames:
- import locale
_bas... | External path library: Remove unneeded import which was causing a crash after last update | spyder-ide_spyder | train | py |
5f9c67b9498c9cf488dde28738845609152ce8d3 | diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -38,9 +38,11 @@ def delete_generated_files test_case, example=nil
Dir.chdir(dir) do
[
"#{test_case}.c", "#{test_case}.so", "Makefile",
- "extconf.rb" , "#{test... | allow support for .bundle files and .dll files teardown in specs | SciRuby_rubex | train | rb |
3c52b872d7e3e004ff0e8c6b2e5db82fbc939517 | diff --git a/spec/actv/asset_spec.rb b/spec/actv/asset_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/actv/asset_spec.rb
+++ b/spec/actv/asset_spec.rb
@@ -1,5 +1,4 @@
require 'spec_helper'
-require 'pry'
describe ACTV::Asset do | Removes pry from asset spec | activenetwork_actv | train | rb |
75463d389db446725c1420a19f2cf6a5486c70b3 | diff --git a/spec/functional/chef/source/git_spec.rb b/spec/functional/chef/source/git_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/functional/chef/source/git_spec.rb
+++ b/spec/functional/chef/source/git_spec.rb
@@ -263,11 +263,11 @@ module Librarian
end
context "if the path option is right" ... | Use double-quoted string literals by convention. | applicationsonline_librarian | train | rb |
c8cb3dfb5ee686381cf11caa610f2c955c03a677 | diff --git a/tests/test_bot_get.py b/tests/test_bot_get.py
index <HASH>..<HASH> 100644
--- a/tests/test_bot_get.py
+++ b/tests/test_bot_get.py
@@ -16,7 +16,8 @@ from .test_bot import TestBot
from .test_variables import (TEST_CAPTION_ITEM, TEST_COMMENT_ITEM,
TEST_PHOTO_ITEM, TEST_SEARCH_US... | Added TEST_MEDIA_LIKER | instagrambot_instabot | train | py |
d2b67a7b823d7c703c607f68bb15982d53e2dca5 | diff --git a/lib/twitter4j4r/client.rb b/lib/twitter4j4r/client.rb
index <HASH>..<HASH> 100644
--- a/lib/twitter4j4r/client.rb
+++ b/lib/twitter4j4r/client.rb
@@ -1,5 +1,3 @@
-require 'jruby/core_ext'
-
require 'jar/twitter4j-core-2.2.6.jar'
require 'jar/twitter4j-stream-2.2.6.jar'
require 'jar/twitter4j-async-2.2.6... | Move the become_java! call to listener.rb | tobias_twitter4j4r | train | rb,rb |
76bdde5854de8b3a00f6cf0f6d6b26fd2ae94500 | diff --git a/src/suggestions.js b/src/suggestions.js
index <HASH>..<HASH> 100644
--- a/src/suggestions.js
+++ b/src/suggestions.js
@@ -19,7 +19,7 @@ function makeSuggestion(queryName, element, content, {variant, name}) {
let warning = ''
const queryOptions = {}
const queryArgs = [
- queryName === 'Role' || ... | chore: Update suggestions.js (#<I>) | testing-library_dom-testing-library | train | js |
720e45c047dbcf169f2b29696b65a7d4c557f8f3 | diff --git a/test/test.js b/test/test.js
index <HASH>..<HASH> 100644
--- a/test/test.js
+++ b/test/test.js
@@ -81,7 +81,6 @@ describe("phantom html to pdf", function () {
fs.unlinkSync(filePath);
} catch (e) {
}
- ;
}
}
... | Adding empty endline to test file | pofider_phantom-html-to-pdf | train | js |
64428495195b5ee605d3c65cf6e557e2ff96169a | diff --git a/src/you_get/processor/ffmpeg.py b/src/you_get/processor/ffmpeg.py
index <HASH>..<HASH> 100644
--- a/src/you_get/processor/ffmpeg.py
+++ b/src/you_get/processor/ffmpeg.py
@@ -18,11 +18,7 @@ def get_usable_ffmpeg(cmd):
except:
return None
-get_usable_ffmpeg_result = get_usable_ffmpeg('ffmpeg'... | set FFMPEG and FFMPEG_VERSION gracefully | soimort_you-get | train | py |
5f38d4f0869ef04b155c2b454da40346b91af273 | diff --git a/examples/s3/presignedpostpolicy.go b/examples/s3/presignedpostpolicy.go
index <HASH>..<HASH> 100644
--- a/examples/s3/presignedpostpolicy.go
+++ b/examples/s3/presignedpostpolicy.go
@@ -51,5 +51,4 @@ func main() {
fmt.Printf("-F %s=%s ", k, v)
}
fmt.Printf("-F file=@/etc/passwd ")
- fmt.Printf(confi... | Update presignedpostpolicy.go | minio_minio-go | train | go |
a7fa1143ac68a431b56169d957735748fdc41210 | diff --git a/public/suite.js b/public/suite.js
index <HASH>..<HASH> 100644
--- a/public/suite.js
+++ b/public/suite.js
@@ -120,6 +120,7 @@
out.sourceURL = err.sourceURL
out.message = err.message
out.assertion = err.assertion
+ out.elapsed = err.elapsed
} else {
out = {pass:true}
... | making require.js-based errors a little bit more parse-able | urbanairship_drive.js | train | js |
26a2283d591bcadb985b2932b989a91c2d4a84b5 | diff --git a/package/cloudshell/cp/vcenter/common/utilites/savers/linked_clone_artifact_saver.py b/package/cloudshell/cp/vcenter/common/utilites/savers/linked_clone_artifact_saver.py
index <HASH>..<HASH> 100644
--- a/package/cloudshell/cp/vcenter/common/utilites/savers/linked_clone_artifact_saver.py
+++ b/package/cloud... | dont fail delete saved if folder not found | QualiSystems_vCenterShell | train | py |
a0ade1ef53cc410582ff1eedc7a0dcf4a94b5edb | diff --git a/Controller/Toolkit.php b/Controller/Toolkit.php
index <HASH>..<HASH> 100644
--- a/Controller/Toolkit.php
+++ b/Controller/Toolkit.php
@@ -256,7 +256,8 @@ class sb_Controller_Toolkit extends sb_Controller{
$protocol = isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 443 ? 'https' : 'http';... | only defines sbBase if not defined already | surebert_surebert-framework | train | php |
455c36654fdaa53a4425fc550014a2365c0951de | diff --git a/lib/datalib.php b/lib/datalib.php
index <HASH>..<HASH> 100644
--- a/lib/datalib.php
+++ b/lib/datalib.php
@@ -771,13 +771,6 @@ function get_records_sql($sql) {
foreach ($records as $key => $record) {
$objects[$key] = (object) $record;
}
- // log perform... | Backed out unrelated block from last commit | moodle_moodle | train | php |
c4bd6932eb41ccfcf6b7163015cecc13b48ec1b7 | diff --git a/nexl-client/public/util-functions/nexl-ui.js b/nexl-client/public/util-functions/nexl-ui.js
index <HASH>..<HASH> 100644
--- a/nexl-client/public/util-functions/nexl-ui.js
+++ b/nexl-client/public/util-functions/nexl-ui.js
@@ -82,7 +82,7 @@ var module = (function (module) {
function putDataIntoOutputAre... | - output become formatted in nexl-client; | liamray_nexl-engine | train | js |
b72cc2a5ee07a9d027bca379264d9c0595507d1f | diff --git a/payment/src/main/java/org/killbill/billing/payment/invoice/InvoicePaymentControlPluginApi.java b/payment/src/main/java/org/killbill/billing/payment/invoice/InvoicePaymentControlPluginApi.java
index <HASH>..<HASH> 100644
--- a/payment/src/main/java/org/killbill/billing/payment/invoice/InvoicePaymentControlP... | payment: Optimize priorCall to avoid unnecessary logic and limit # invoice queries. See #<I> | killbill_killbill | train | java |
6c5ac236c5f7e813573461a3896ebfdd0e5f99e7 | diff --git a/libs/verysimple/Phreeze/CriteriaFilter.php b/libs/verysimple/Phreeze/CriteriaFilter.php
index <HASH>..<HASH> 100644
--- a/libs/verysimple/Phreeze/CriteriaFilter.php
+++ b/libs/verysimple/Phreeze/CriteriaFilter.php
@@ -51,7 +51,7 @@ class CriteriaFilter
foreach ($propertyNames as $propName)
{
$dbf... | criteria filter now sql escapes column/property names | jasonhinkle_phreeze | train | php |
dee437229e4a036bc8b519bc8288c2456b64a0fa | diff --git a/lib/commands/touch.js b/lib/commands/touch.js
index <HASH>..<HASH> 100644
--- a/lib/commands/touch.js
+++ b/lib/commands/touch.js
@@ -27,7 +27,7 @@ commands.performActions = async function (actions) {
}
} : {}));
this.log.debug(`Preprocessed actions: ${JSON.stringify(preprocessedActions, nul... | fix: wrong parameter in performActions (#<I>)
ActionChains in selenium have a PointerInput whose kind(pointerType) is
"mouse".
We should change this to "touch" for android devices to work properly.
(I confired "mouse" doesn't work and "touch" works.)
There is code for converting "mouse" to "touch" ("preprocessedAc... | appium_appium-uiautomator2-driver | train | js |
47ec7969fb58fa8a12cff301e481ae21c9d5b5e1 | diff --git a/pyramid_multiauth/__init__.py b/pyramid_multiauth/__init__.py
index <HASH>..<HASH> 100644
--- a/pyramid_multiauth/__init__.py
+++ b/pyramid_multiauth/__init__.py
@@ -261,9 +261,19 @@ def policy_factory_from_module(config, module):
# Find the most recent IAuthenticationPolicy action, and grab
# ou... | Compatability with Pyramid <I>.
Pyramid <I> changes the API of the internal ActionState object, which
pyramid_multiauth uses for deep introspection. This patch tries the
<I> API first and falls back to the previous API if that fails. | mozilla-services_pyramid_multiauth | train | py |
84bc8f1e26ceaac58029292161881eb614e36ff4 | diff --git a/lib/actions/field-trip.js b/lib/actions/field-trip.js
index <HASH>..<HASH> 100644
--- a/lib/actions/field-trip.js
+++ b/lib/actions/field-trip.js
@@ -234,7 +234,7 @@ export function addFieldTripNote(request, note, intl) {
}
/**
- * Updates a particular field/set of fields of a given field trip request.... | refactor(actions/field-trip): Tweak comment. | opentripplanner_otp-react-redux | train | js |
ef48c4925652b1ab8a56b7af2b72b21a202b6259 | diff --git a/src/main/java/net/fortuna/ical4j/validate/DefaultCalendarValidatorFactory.java b/src/main/java/net/fortuna/ical4j/validate/DefaultCalendarValidatorFactory.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/fortuna/ical4j/validate/DefaultCalendarValidatorFactory.java
+++ b/src/main/java/net/fortuna/ic... | Extract constant rules in DefaultCalendarValidatorFactory
Reduces memory footprint & garbage collection.
gh-<I> | ical4j_ical4j | train | java |
5b98b736c62c9056ebcce836c968ac73c43e231a | diff --git a/elasticsearch-extensions/lib/elasticsearch/extensions/ansi/response.rb b/elasticsearch-extensions/lib/elasticsearch/extensions/ansi/response.rb
index <HASH>..<HASH> 100644
--- a/elasticsearch-extensions/lib/elasticsearch/extensions/ansi/response.rb
+++ b/elasticsearch-extensions/lib/elasticsearch/extension... | [EXT] Added, that ANSI extension uses the `awesome_print` gem for "unknown" handlers | elastic_elasticsearch-ruby | train | rb |
37fa0e7531fbd240131d498f43436aafd4393149 | diff --git a/distutils/tests/test_msvccompiler.py b/distutils/tests/test_msvccompiler.py
index <HASH>..<HASH> 100644
--- a/distutils/tests/test_msvccompiler.py
+++ b/distutils/tests/test_msvccompiler.py
@@ -110,6 +110,26 @@ class TestSpawn(unittest.TestCase):
thread.join()
assert all(threads)
+ ... | Add test capturing failed expectation. Ref pypa/distutils#<I>. | pypa_setuptools | train | py |
81d6287ac876ab2e1fff99add5f80675014eba2f | diff --git a/patreon/schemas/goal_spec.py b/patreon/schemas/goal_spec.py
index <HASH>..<HASH> 100644
--- a/patreon/schemas/goal_spec.py
+++ b/patreon/schemas/goal_spec.py
@@ -26,9 +26,7 @@ def test_schema_attributes_are_properly_formatted(attributes):
def test_schema_relationships_are_properly_formatted(relationsh... | Modify goal spec to check for empty list since that's what we have. | Patreon_patreon-python | train | py |
bf18ae937632398f46fe943c3964b38bd3ba900a | diff --git a/lib/stripe/util.rb b/lib/stripe/util.rb
index <HASH>..<HASH> 100644
--- a/lib/stripe/util.rb
+++ b/lib/stripe/util.rb
@@ -124,7 +124,7 @@ module Stripe
when NilClass
{}
when String
- {api_key: opts}
+ {:api_key => opts}
when Hash
opts.clone
else | Fix use of <I>-style hashes | stripe_stripe-ruby | train | rb |
5c755ca13a59fa504a374989c5994e6c60a2c086 | diff --git a/models/classes/class.TestsService.php b/models/classes/class.TestsService.php
index <HASH>..<HASH> 100644
--- a/models/classes/class.TestsService.php
+++ b/models/classes/class.TestsService.php
@@ -91,7 +91,7 @@ class taoTests_models_classes_TestsService
* @author Joel Bout, <joel@taotesting.com>
... | TAO-<I> - The GetRootclass renamed to GetRootClass | oat-sa_extension-tao-test | train | php |
37ee0c623e392895086377d862d9476096a5c6ce | diff --git a/src/frontend/org/voltdb/export/ExportGeneration.java b/src/frontend/org/voltdb/export/ExportGeneration.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/export/ExportGeneration.java
+++ b/src/frontend/org/voltdb/export/ExportGeneration.java
@@ -115,6 +115,7 @@ public class ExportGeneration imp... | ENG-<I>-<I>: Add comments | VoltDB_voltdb | train | java |
370899e1fc9335624ba9858196caa904fed8a41e | diff --git a/jsoncmd.go b/jsoncmd.go
index <HASH>..<HASH> 100644
--- a/jsoncmd.go
+++ b/jsoncmd.go
@@ -5960,7 +5960,7 @@ func (cmd *SignMessageCmd) UnmarshalJSON(b []byte) error {
// RawTxInput models the data needed for a raw tx input.
type RawTxInput struct {
Txid string `json:"txid"`
- Vout int ... | Change RawTxInput.Vout to uint<I> as well.
This was missed by the previous commit. | btcsuite_btcd | train | go |
ec7d6349d53ed68853eb1f7713fc6906201fcee4 | diff --git a/molgenis-data/src/main/java/org/molgenis/data/support/QueryImpl.java b/molgenis-data/src/main/java/org/molgenis/data/support/QueryImpl.java
index <HASH>..<HASH> 100644
--- a/molgenis-data/src/main/java/org/molgenis/data/support/QueryImpl.java
+++ b/molgenis-data/src/main/java/org/molgenis/data/support/Quer... | [REFACTOR] Make QueryImpl EQ, IN and query methods generic. | molgenis_molgenis | train | java |
6a5145a04f1c7f671620c0146a2ce0241afee60c | diff --git a/pkg_resources/extern/__init__.py b/pkg_resources/extern/__init__.py
index <HASH>..<HASH> 100644
--- a/pkg_resources/extern/__init__.py
+++ b/pkg_resources/extern/__init__.py
@@ -29,7 +29,10 @@ class VendorImporter:
for prefix in self.search_path:
try:
__import__(prefi... | Based on experimentation, the canonical module name needs to be in sys.modules on Python prior to <I>, but must be omitted on Python <I> and later.
--HG--
branch : feature/issue-<I> | pypa_setuptools | train | py |
39dd55752f952460478cfdd80b4cb221144c5680 | diff --git a/source/org/jasig/portal/security/md5passwd.java b/source/org/jasig/portal/security/md5passwd.java
index <HASH>..<HASH> 100644
--- a/source/org/jasig/portal/security/md5passwd.java
+++ b/source/org/jasig/portal/security/md5passwd.java
@@ -4,7 +4,7 @@
* Redistribution and use in source and binary forms, wi... | Made some minor adjustments so that md5passwd can be run from Ant.
git-svn-id: <URL> | Jasig_uPortal | train | java |
70b0386274cccee29ce814bfd0943e0b03c48d67 | diff --git a/lib/beaker-vagrant/version.rb b/lib/beaker-vagrant/version.rb
index <HASH>..<HASH> 100644
--- a/lib/beaker-vagrant/version.rb
+++ b/lib/beaker-vagrant/version.rb
@@ -1,3 +1,3 @@
module BeakerVagrant
- VERSION = '0.6.4'
+ VERSION = '0.6.5'
end | (GEM) update beaker-vagrant version to <I> | puppetlabs_beaker-vagrant | train | rb |
81d190aab4c94b9e01bbdc8af223cd0750d0ef58 | diff --git a/app/controllers/effective/regions_controller.rb b/app/controllers/effective/regions_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/effective/regions_controller.rb
+++ b/app/controllers/effective/regions_controller.rb
@@ -4,6 +4,8 @@ module Effective
layout false
before_filter :... | skip_log_page_views if EffectiveLogging is installed. Version <I> | code-and-effect_effective_regions | train | rb,rb |
aaf412259a358238e25af7c4053983719945f064 | diff --git a/packages/lingui-react/src/I18nProvider.js b/packages/lingui-react/src/I18nProvider.js
index <HASH>..<HASH> 100644
--- a/packages/lingui-react/src/I18nProvider.js
+++ b/packages/lingui-react/src/I18nProvider.js
@@ -28,9 +28,13 @@ class I18nManager {
development?: Object,
i18n?: I18n
}) {
- t... | fix: Load messages after dev data are setup | lingui_js-lingui | train | js,js |
b92f1e13d0d9a02203b9bbd6c62d09cced7eb138 | diff --git a/raiden/transfer/mediated_transfer/initiator.py b/raiden/transfer/mediated_transfer/initiator.py
index <HASH>..<HASH> 100644
--- a/raiden/transfer/mediated_transfer/initiator.py
+++ b/raiden/transfer/mediated_transfer/initiator.py
@@ -273,7 +273,7 @@ def send_lockedtransfer(
# amount, as a guarantee to... | Fix fee calculation in `send_lockedtransfer` | raiden-network_raiden | train | py |
6f671bb7871b1cb40db9b7eef2a8595d11825e07 | diff --git a/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb b/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb
+++ b/app/controllers/katello/concern... | Fixes #<I> - Global Registration fails when host not found (#<I>)
Fix for case, when the host is already registered by
subscription-manager, but does not exists in Foreman. | Katello_katello | train | rb |
c1e60a0abdb4fd6d5e2fa6874b0bc3354d397439 | diff --git a/src/Composer/Installer/LibraryInstaller.php b/src/Composer/Installer/LibraryInstaller.php
index <HASH>..<HASH> 100644
--- a/src/Composer/Installer/LibraryInstaller.php
+++ b/src/Composer/Installer/LibraryInstaller.php
@@ -268,7 +268,7 @@ class LibraryInstaller implements InstallerInterface
}
... | Ensure the bin directory exists before checking empty
Line <I> has similar logic so avoided doing the check withiin `isDirEmpty()` | composer_composer | train | php |
302e6218bb4641be34b2327e094b080cf5f58ca7 | diff --git a/tests/Doctrine/Tests/ORM/Functional/MergeSharedEntitiesTest.php b/tests/Doctrine/Tests/ORM/Functional/MergeSharedEntitiesTest.php
index <HASH>..<HASH> 100644
--- a/tests/Doctrine/Tests/ORM/Functional/MergeSharedEntitiesTest.php
+++ b/tests/Doctrine/Tests/ORM/Functional/MergeSharedEntitiesTest.php
@@ -94,7 ... | DDC-<I> - renaming test case for clarity | doctrine_orm | train | php |
39bbe14a8d5a4c183cb52539f8c748d97f50480b | diff --git a/lib/array_logic/version.rb b/lib/array_logic/version.rb
index <HASH>..<HASH> 100644
--- a/lib/array_logic/version.rb
+++ b/lib/array_logic/version.rb
@@ -1,3 +1,3 @@
module ArrayLogic
- VERSION = "0.0.6"
+ VERSION = "0.1.0"
end | Moved to beta version <I> | reggieb_array_logic | train | rb |
de9a871e2caa7aad84214c9144624e7044dc1780 | diff --git a/src/geo/leaflet/leaflet.js b/src/geo/leaflet/leaflet.js
index <HASH>..<HASH> 100644
--- a/src/geo/leaflet/leaflet.js
+++ b/src/geo/leaflet/leaflet.js
@@ -271,7 +271,14 @@
},
invalidateSize: function() {
- this.map_leaflet.invalidateSize({ pan: false});
+ // there is a race condition i... | fixed problem resizing leaflet layers CDB-<I> | CartoDB_carto.js | train | js |
667c0832d9a8744917eed9c8bd3374b717a95a85 | diff --git a/lxd/events/events.go b/lxd/events/events.go
index <HASH>..<HASH> 100644
--- a/lxd/events/events.go
+++ b/lxd/events/events.go
@@ -46,13 +46,13 @@ func (s *Server) AddListener(projectName string, allProjects bool, connection *w
listenerCommon: listenerCommon{
Conn: connection,
messageType... | lxd/events/events: Server | lxc_lxd | train | go |
e7dda52d3147ba9155a6957fb8c98fa263f9e0b1 | diff --git a/canvas_renderer.js b/canvas_renderer.js
index <HASH>..<HASH> 100644
--- a/canvas_renderer.js
+++ b/canvas_renderer.js
@@ -12,6 +12,9 @@ CanvasRenderer.prototype.init = function CanvasRendererInit ()
this.selection_info.setAttribute('class', 'label');
this.selection_info.style.display = 'none';
... | fix canvas renderer to work with locally scaled (0-<I>) tiles | tangrams_tangram | train | js |
e9027202c5fcd2b140584ab08b9c151ed12449d6 | diff --git a/sigar_windows.go b/sigar_windows.go
index <HASH>..<HASH> 100644
--- a/sigar_windows.go
+++ b/sigar_windows.go
@@ -181,7 +181,7 @@ func (fs *FileSystemUsage) Get(path string) error {
return fmt.Errorf("FileSystemUsage (%s): %s", path, err)
}
- m := uint64(SectorsPerCluster * BytesPerSector)
+ m := ui... | windows should return disk stats in KB not bytes
- matches linux behavior
[#<I>] | cloudfoundry_gosigar | train | go |
8e7ba9367d5be8061b3947639238ec784432546a | diff --git a/lavalink/__init__.py b/lavalink/__init__.py
index <HASH>..<HASH> 100644
--- a/lavalink/__init__.py
+++ b/lavalink/__init__.py
@@ -11,4 +11,4 @@ from .enums import NodeState, PlayerState, TrackEndReason, LavalinkEvents
from .rest_api import Track
from . import utils
-__version__ = "0.7.0"
+__version__ =... | Fix a `TypeError` on incomplete state dict (#<I>) | Cog-Creators_Red-Lavalink | train | py,py |
e59298e0e4ea686525bc59a9d3bfe8a75f4e2bf2 | diff --git a/benchmarks/index.js b/benchmarks/index.js
index <HASH>..<HASH> 100644
--- a/benchmarks/index.js
+++ b/benchmarks/index.js
@@ -234,7 +234,7 @@ function startRelay(type) {
'--benchRelayPort', String(self.ports.relayServerPort),
'--traceRelayPort', String(self.ports.relayTraceServerPort),
... | multi_bench: do not set multiple instances for trace server | uber_tchannel-node | train | js |
08315d0078e8c1b39876aa92d09a4e0821ff361a | diff --git a/functional/mock_tests.js b/functional/mock_tests.js
index <HASH>..<HASH> 100644
--- a/functional/mock_tests.js
+++ b/functional/mock_tests.js
@@ -6,6 +6,7 @@ var co = require('co'),
exports['Should correctly perform a simple server connection using mock'] = {
metadata: {
requires: {
+ generat... | Added test support to handle generators test exclusion when runtime does not support them | mongodb_node-mongodb-native | train | js |
e5d791ef6f03070a8bd67ab3c75397ad74ec23ac | diff --git a/config.go b/config.go
index <HASH>..<HASH> 100644
--- a/config.go
+++ b/config.go
@@ -56,7 +56,7 @@ func (b *ggrBrowsers) find(browser, version string, platform string, excludedHos
platform = b.DefaultPlatform
}
for _, v := range b.Versions {
- if strings.HasPrefix(v.Number, version) && str... | Fixed issue with not matched version if XML platform is empty | aerokube_ggr | train | go,go |
f175a18ff5d7be00a4bde4ac667388c73edea121 | diff --git a/module/__init__.py b/module/__init__.py
index <HASH>..<HASH> 100644
--- a/module/__init__.py
+++ b/module/__init__.py
@@ -489,8 +489,8 @@ class Connection(object):
buf = Unpacker(e)
return event(buf)
- @ensure_connected
def send_request(self, flags, xcb_parts, xcb_req):
+ ... | Don't use the decorator to wrap send_request | tych0_xcffib | train | py |
a911372575792bd471ad9c0dfa458ee611bea14f | diff --git a/packages/core/types/index.js b/packages/core/types/index.js
index <HASH>..<HASH> 100644
--- a/packages/core/types/index.js
+++ b/packages/core/types/index.js
@@ -1600,11 +1600,11 @@ export type Optimizer<ConfigType> = {|
*/
export type Compressor = {|
compress({|
- stream: stream$Readable,
+ st... | Use imported Readable flow type instead of global (#<I>) | parcel-bundler_parcel | train | js |
0a98dfd0a6989841d03ea514d91fdbbf5623176b | diff --git a/minicluster/src/main/java/tachyon/master/LocalTachyonMaster.java b/minicluster/src/main/java/tachyon/master/LocalTachyonMaster.java
index <HASH>..<HASH> 100644
--- a/minicluster/src/main/java/tachyon/master/LocalTachyonMaster.java
+++ b/minicluster/src/main/java/tachyon/master/LocalTachyonMaster.java
@@ -4... | Remove unused variables in LocalTachyonMaster | Alluxio_alluxio | train | java |
8119c8f1ccb49d8143946dde0f6e6cf41a804985 | diff --git a/lib/modules/core/index.js b/lib/modules/core/index.js
index <HASH>..<HASH> 100644
--- a/lib/modules/core/index.js
+++ b/lib/modules/core/index.js
@@ -61,6 +61,10 @@ Archiver.prototype._normalizeSource = function(source) {
return source;
};
+Archiver.prototype._onModuleError = function(err) {
+ this.... | core: catch module errors and bubble them up the chain. | archiverjs_node-archiver | train | js |
afea9bc0903df1cdfc439f7347f8ddf5fbcfb767 | diff --git a/inputrules.js b/inputrules.js
index <HASH>..<HASH> 100644
--- a/inputrules.js
+++ b/inputrules.js
@@ -94,13 +94,13 @@ class InputRules {
function getContext(doc, pos) {
let parent = doc.path(pos.path)
- let isPlain = parent.type.plainText
+ let isCode = parent.type.isCode
let textBefore = ""
... | Don't test for code style by name when deciding whether to apply input rules | ProseMirror_prosemirror-inputrules | train | js |
7e0aa0566fee335d20100e2044d99ad88ae9332c | diff --git a/src/main/java/net/engio/mbassy/bus/AbstractSyncAsyncMessageBus.java b/src/main/java/net/engio/mbassy/bus/AbstractSyncAsyncMessageBus.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/engio/mbassy/bus/AbstractSyncAsyncMessageBus.java
+++ b/src/main/java/net/engio/mbassy/bus/AbstractSyncAsyncMessageBu... | uniquely name each msg bus dispatcher thread | bennidi_mbassador | train | java |
de1d4c83380ebcfec0be0943384867902498036d | diff --git a/termbox_inputfield.go b/termbox_inputfield.go
index <HASH>..<HASH> 100644
--- a/termbox_inputfield.go
+++ b/termbox_inputfield.go
@@ -141,7 +141,7 @@ func (i *InputField) HandleEvent(event termbox.Event) bool {
}
} else if event.Key == termbox.KeyCtrlU {
// Ctrl+U Clears the Input (before the curso... | Fix Ctrl+U Behavior (Delete line before cursor) | br0xen_termbox-util | train | go |
c9155689b1216948a79a6af2cb38ff0f58f3eeb3 | diff --git a/spec/controller/catch_all_spec.rb b/spec/controller/catch_all_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/controller/catch_all_spec.rb
+++ b/spec/controller/catch_all_spec.rb
@@ -94,6 +94,23 @@ describe "Stealth::Controller::CatchAll" do
expect($redis.get(controller.current_session.session_key)).... | Release the locks after running the catch_all | hellostealth_stealth | train | rb |
a0c567112f3802694e28489b84c30951fd054217 | diff --git a/benchexec/tools/symbiotic3.py b/benchexec/tools/symbiotic3.py
index <HASH>..<HASH> 100644
--- a/benchexec/tools/symbiotic3.py
+++ b/benchexec/tools/symbiotic3.py
@@ -82,13 +82,13 @@ class Tool(benchexec.tools.template.BaseTool):
return result.RESULT_TRUE_PROP
elif line == 'UNKNOWN':... | symbiotic3.py: fix parsing of result
we can have some more info after the result
(which acts like a garbagge in this case),
so check only for the beginning of the string | sosy-lab_benchexec | train | py |
b0de0d3f432ecb8c78f88507296b84aa448d683d | diff --git a/py/nupic/support/configuration_base.py b/py/nupic/support/configuration_base.py
index <HASH>..<HASH> 100644
--- a/py/nupic/support/configuration_base.py
+++ b/py/nupic/support/configuration_base.py
@@ -389,11 +389,13 @@ class Configuration(object):
configVar = os.environ['NTA_CONF_DIR']
#... | Rearrange configuration defaults to match unit tests. | numenta_nupic | train | py |
774a8c00063b0038e2530506e00b2df2f7d587e2 | diff --git a/src/stratum/stratum-messages.js b/src/stratum/stratum-messages.js
index <HASH>..<HASH> 100644
--- a/src/stratum/stratum-messages.js
+++ b/src/stratum/stratum-messages.js
@@ -248,3 +248,22 @@ export function broadcastTx (
onFail
}
}
+
+export function fetchEstimateFee (
+ blocksToBeIncludedIn: str... | added fetchEstimateFee to get fallback fees | EdgeApp_edge-currency-bitcoin | train | js |
de7af99696cb67fcd44c4bbb9af7098ea2f4c113 | diff --git a/pybib/formatters.py b/pybib/formatters.py
index <HASH>..<HASH> 100644
--- a/pybib/formatters.py
+++ b/pybib/formatters.py
@@ -34,7 +34,10 @@ def get_common_parts(r):
"""Gets citation parts which are common to all types of citation"""
def format_title(title):
- return title[0]
+ tr... | Ensure that title absence is handled gracefully | jgilchrist_pybib | train | py |
48810d0c3336ffffcb33611dbfb84142a0289bd7 | diff --git a/tests/src/Steam/Command/WebApiUtil/GetSupportedApiListTest.php b/tests/src/Steam/Command/WebApiUtil/GetSupportedApiListTest.php
index <HASH>..<HASH> 100644
--- a/tests/src/Steam/Command/WebApiUtil/GetSupportedApiListTest.php
+++ b/tests/src/Steam/Command/WebApiUtil/GetSupportedApiListTest.php
@@ -2,7 +2,7 ... | Updated class name in test as it was causing fatal error due to case sensitivity | DaMitchell_steam-api-php | train | php |
441632a7618bbca13b64c3d70f252f3b340a730b | diff --git a/lib/art-decomp/fsm.rb b/lib/art-decomp/fsm.rb
index <HASH>..<HASH> 100644
--- a/lib/art-decomp/fsm.rb
+++ b/lib/art-decomp/fsm.rb
@@ -41,12 +41,11 @@ module ArtDecomp class FSM
end
def to_kiss
- ins = @inputs.transpose
- outs = @outputs.transpose
st = @state.map { |e| e == DontCa... | refactor FSM#to_kiss | chastell_art-decomp | train | rb |
e0639bda05770518b1f001f9db31a57b87df9dd2 | diff --git a/plugins/org.eclipse.xtext.xbase/src/org/eclipse/xtext/xbase/scoping/XbaseScopeProvider.java b/plugins/org.eclipse.xtext.xbase/src/org/eclipse/xtext/xbase/scoping/XbaseScopeProvider.java
index <HASH>..<HASH> 100644
--- a/plugins/org.eclipse.xtext.xbase/src/org/eclipse/xtext/xbase/scoping/XbaseScopeProvider.... | [xbase] Extended constructor call scope | eclipse_xtext-extras | train | java |
54d64105c0fec604140b581fd0b0fb3f7ac54b50 | diff --git a/kafka/client.py b/kafka/client.py
index <HASH>..<HASH> 100644
--- a/kafka/client.py
+++ b/kafka/client.py
@@ -404,7 +404,7 @@ class SimpleClient(object):
return [responses[tp] for tp in original_ordering]
def __repr__(self):
- return '<KafkaClient client_id=%s>' % (self.client_id)
+ ... | Update string representation of SimpleClient | dpkp_kafka-python | train | py |
7f35abcada0643eefb6065e4bc5d3ff3adf8df39 | diff --git a/src/preloadjs/LoadQueue.js b/src/preloadjs/LoadQueue.js
index <HASH>..<HASH> 100644
--- a/src/preloadjs/LoadQueue.js
+++ b/src/preloadjs/LoadQueue.js
@@ -790,6 +790,13 @@ this.createjs = this.createjs || {};
* object will contain that value as a property.
*/
+ /**
+ * Although it extends {{#crossL... | Documentation: Updated LoadQueue.initialize event to show it is not dispatched (thanks @marvin) | CreateJS_PreloadJS | train | js |
1cf41a6d2435ec4874b877632abab1a912d40b57 | diff --git a/src/base/base_object.js b/src/base/base_object.js
index <HASH>..<HASH> 100644
--- a/src/base/base_object.js
+++ b/src/base/base_object.js
@@ -2,21 +2,22 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-var _ = require('underscore');
-var extend... | base object: change to es6 syntax | clappr_clappr | train | js |
33d53cf9e522236d1490e99f183c4734981804f5 | diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -463,7 +463,7 @@ func (me *Client) connectionLoop(t *torrent, c *connection) error {
err = errors.New("received unexpected bitfield")
break
}
- c.PeerPieces = msg.Bitfield[:len(t.NumPieces())]
+ c.PeerPie... | Trivial fix for one of the last commits | anacrolix_torrent | train | go |
4177eec48f628d2f20d161f0429501c3338760b9 | diff --git a/lib/rest-core/client.rb b/lib/rest-core/client.rb
index <HASH>..<HASH> 100644
--- a/lib/rest-core/client.rb
+++ b/lib/rest-core/client.rb
@@ -60,8 +60,8 @@ module RestCore::Client
end
def inspect
- "#<struct #{self.class.name} #{attributes.map{ |k, v|
- "#{k}=#{v.inspect}" }.join(', ')}>"
+... | client.rb: fix inspect if there's no fields at all | godfat_rest-core | train | rb |
33890b19f13c119ad30a39652f8ca303856272cd | diff --git a/csp.py b/csp.py
index <HASH>..<HASH> 100644
--- a/csp.py
+++ b/csp.py
@@ -106,8 +106,8 @@ class CSP(search.Problem):
var = find_if(lambda v: v not in assignment, self.vars)
result = []
for val in self.domains[var]:
- if self.nconflicts(self, var, val, a... | Fixed a bug pylint pointed out in unused code. Still untested. | hobson_aima | train | py |
098e4daac56d0e0969a7550a4f50080281f2e4f4 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -62,6 +62,15 @@ class PublicationServer {
}
/**
+ * Broadcast a message to all connected clients.
+ *
+ * @param {Object} msg The message to send to all connected clients.
+ */
+ broadcast(msg)... | Add ability to broadcast messages to all clients | mixmaxhq_publication-server | train | js |
24fc2fadadb1be4bae7724c297c3b07f8d6dabd5 | diff --git a/src/Utility/Rsync.php b/src/Utility/Rsync.php
index <HASH>..<HASH> 100644
--- a/src/Utility/Rsync.php
+++ b/src/Utility/Rsync.php
@@ -32,6 +32,7 @@ class Rsync
* Start rsync process.
*
* @param string|string[] $source
+ * @phpstan-param array{flags?: string, options?: array, timeout?:... | upload(): add more precise phpdocs (#<I>)
* upload(): add more precise phpdocs
* Update Rsync.php
* Update Rsync.php
* Update functions.php | deployphp_deployer | train | php,php |
0d0a7e72e6d5fbbfc3a44da676e830379d16f6a4 | diff --git a/examples/webhooks.php b/examples/webhooks.php
index <HASH>..<HASH> 100644
--- a/examples/webhooks.php
+++ b/examples/webhooks.php
@@ -1,5 +1,13 @@
<?php
+// You can use this script with the webhook testing tool in the developer tab.
+// At the moment, the best way to learn about the different webhooks i... | Added intro and docs link to webhook example | gocardless_gocardless-legacy-php | train | php |
d333ba53c306fbb72562bfc450587559333b4339 | diff --git a/tests/OSS/Tests/BucketLiveChannelTest.php b/tests/OSS/Tests/BucketLiveChannelTest.php
index <HASH>..<HASH> 100644
--- a/tests/OSS/Tests/BucketLiveChannelTest.php
+++ b/tests/OSS/Tests/BucketLiveChannelTest.php
@@ -20,6 +20,7 @@ class BucketLiveChannelTest extends \PHPUnit_Framework_TestCase
$this-... | add sleep to fix bucket not exsit | aliyun_aliyun-oss-php-sdk | train | php |
b2f80c4aec321d1b2b842ec00f7cbb7f0c048170 | diff --git a/lib/ahoy_email.rb b/lib/ahoy_email.rb
index <HASH>..<HASH> 100644
--- a/lib/ahoy_email.rb
+++ b/lib/ahoy_email.rb
@@ -75,5 +75,5 @@ end
ActiveSupport.on_load(:action_mailer) do
include AhoyEmail::Mailer
register_observer AhoyEmail::Observer
- Mail::Message.attr_accessor :ahoy_data, :ahoy_message
+ ... | Fixed error with attr_accessor being private in earlier versions of Ruby - fixes #<I> | ankane_ahoy_email | train | rb |
2607c5e46c52bcc3fc44786a8d94aa7667e4bd60 | diff --git a/spec/theatre/invocation_spec.rb b/spec/theatre/invocation_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/theatre/invocation_spec.rb
+++ b/spec/theatre/invocation_spec.rb
@@ -56,6 +56,7 @@ describe "Using Invocations that've been ran through the Theatre" do
end
it "should have a status of :error if ... | Set theatre tests pending where they were failing pre-cleanup | adhearsion_adhearsion | train | rb,rb |
6ad16db9d5d9b3d6e04de854b6e8d93098dad1d9 | diff --git a/languagetool-core/src/main/java/org/languagetool/rules/patterns/PasswordAuthenticator.java b/languagetool-core/src/main/java/org/languagetool/rules/patterns/PasswordAuthenticator.java
index <HASH>..<HASH> 100644
--- a/languagetool-core/src/main/java/org/languagetool/rules/patterns/PasswordAuthenticator.jav... | avoid NPE which can occur under some (unclear) conditions | languagetool-org_languagetool | train | java |
ee30378adf53d5c43b16c12c7a7ae82985303bd4 | diff --git a/Person.php b/Person.php
index <HASH>..<HASH> 100644
--- a/Person.php
+++ b/Person.php
@@ -9,20 +9,24 @@ use Vundi\Potato\Exceptions\IDShouldBeNumber;
class Person extends Model
{
protected static $entity_table = 'Person';
- protected static $entity_class = 'Person';
}
- $dotenv = new Dotenv... | (Fix) Remove the dotenv initializer from the child class.Moved to Database class | vickris_potatoORM | train | php |
89a71d5c499514afcc21425e1c07bd93e9d62273 | diff --git a/fmn/rules/__init__.py b/fmn/rules/__init__.py
index <HASH>..<HASH> 100644
--- a/fmn/rules/__init__.py
+++ b/fmn/rules/__init__.py
@@ -1,3 +1,4 @@
+from fmn.rules.anitya import *
from fmn.rules.ansible import *
from fmn.rules.askbot import *
from fmn.rules.bodhi import * | Import the anitya rules at the module level | fedora-infra_fmn.rules | train | py |
084adeed55c823e4a7ad938c8aeb8109c46820ad | diff --git a/src/Guzzle/Http/Client.php b/src/Guzzle/Http/Client.php
index <HASH>..<HASH> 100644
--- a/src/Guzzle/Http/Client.php
+++ b/src/Guzzle/Http/Client.php
@@ -222,7 +222,7 @@ class Client extends AbstractHasDispatcher implements ClientInterface
if (!is_array($uri)) {
$templateVars = null;
... | Fix error in Client::createRequest | guzzle_guzzle3 | train | php |
a534923d90daa3e861bb036712f43ab55656cbe9 | diff --git a/tests/Tests.php b/tests/Tests.php
index <HASH>..<HASH> 100644
--- a/tests/Tests.php
+++ b/tests/Tests.php
@@ -634,4 +634,13 @@ abstract class Tests extends TestBase
$test->get('/barcodes?transform=1');
$test->expect('{"barcodes":[{"id":1,"product_id":1,"hex":"00ff01","bin":"AP8B"}]}');
... | Add test case for Escaped JSON Issue #<I> | mevdschee_php-crud-api | train | php |
a9c76d572bc8207f65df169152a24770d56595c4 | diff --git a/src/jquery.gridster.js b/src/jquery.gridster.js
index <HASH>..<HASH> 100755
--- a/src/jquery.gridster.js
+++ b/src/jquery.gridster.js
@@ -31,6 +31,7 @@
autogrow_cols: false,
autogenerate_stylesheet: true,
avoid_overlapped_widgets: true,
+ auto_init: true,
serializ... | feature(gridster): added `auto_init` config option, default to true
Useful when using `positionschanged` event, fired before gridster
instance is cached. | ducksboard_gridster.js | train | js |
33ecb79d11c93581f17cc89793cf237b3e0d5c5d | diff --git a/projections.py b/projections.py
index <HASH>..<HASH> 100644
--- a/projections.py
+++ b/projections.py
@@ -219,6 +219,14 @@ class Projections():
self.year = str(self.dateArr[0])
self.month = str(self.dateArr[1] + 1)
self.day = str(self.dateArr[2])
+ ... | Worked on exporting data to database. | mthxx_Budget | train | py |
a5a3b49ff83e608ead7c1dc8a8a13e0e3a999080 | diff --git a/res/template/GeneratedPuliFactory.tpl.php b/res/template/GeneratedPuliFactory.tpl.php
index <HASH>..<HASH> 100644
--- a/res/template/GeneratedPuliFactory.tpl.php
+++ b/res/template/GeneratedPuliFactory.tpl.php
@@ -23,7 +23,7 @@ use <?php echo $import ?>;
*
* Otherwise any modifications will be overwrit... | Removed superfluous linebreak from GeneratedPuliFactory | puli_manager | train | php |
935b661ce92b045348b5b9dec6a6330ebc8b910e | diff --git a/src/Listeners/CascadeDeleteListener.php b/src/Listeners/CascadeDeleteListener.php
index <HASH>..<HASH> 100755
--- a/src/Listeners/CascadeDeleteListener.php
+++ b/src/Listeners/CascadeDeleteListener.php
@@ -9,8 +9,8 @@ class CascadeDeleteListener
/**
* Handel the event for eloquent delete.
... | Apply fixes from StyleCI (#<I>) | Askedio_laravel-soft-cascade | train | php,php |
7387353dde52dcdff0061b0a3cb154b0623876db | diff --git a/src/js/pannellum.js b/src/js/pannellum.js
index <HASH>..<HASH> 100644
--- a/src/js/pannellum.js
+++ b/src/js/pannellum.js
@@ -187,7 +187,7 @@ controls.orientation.className = 'pnlm-orientation-button pnlm-sprite pnlm-contr
if (window.DeviceOrientationEvent) {
window.addEventListener('deviceorientatio... | Don't show device orientation button on desktop Chrome. | mpetroff_pannellum | train | js |
2f80f028ee69714059ce9680817b933993956785 | diff --git a/lib/cache.js b/lib/cache.js
index <HASH>..<HASH> 100644
--- a/lib/cache.js
+++ b/lib/cache.js
@@ -385,10 +385,10 @@ function setRoute(options) {
CTZN.cache.routes[options.route] = {
route: options.route,
contentType: options.contentType,
- view: {
- identity: option... | Renamed route cache contents to 'render' for consistency | jaysylvester_citizen | train | js,js |
768b4ea24de0080a29e5467cda0142f5de62c660 | diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb
index <HASH>..<HASH> 100644
--- a/activesupport/test/core_ext/string_ext_test.rb
+++ b/activesupport/test/core_ext/string_ext_test.rb
@@ -414,7 +414,7 @@ class StringConversionsTest < ActiveSupport::TestCase
... | tests, add note about the usage of a specific timezone. Closes #<I>. | rails_rails | train | rb |
2ae1d7d75153f5dae3d3cc24ae0de84d7070021c | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -63,7 +63,7 @@ export default class Api {
else {
if( !(ep instanceof Object) )
ep = { name: ep };
- const { name, options = {} } = ep;
+ const {name, options={... | * Use default include options.
* By default use plurals. | uptick_js-tinyapi | train | js |
c3c76b3180df23a6e66b77484b4d5ab7932b15aa | diff --git a/lib/ruby_gems_gems_gem_simple.rb b/lib/ruby_gems_gems_gem_simple.rb
index <HASH>..<HASH> 100644
--- a/lib/ruby_gems_gems_gem_simple.rb
+++ b/lib/ruby_gems_gems_gem_simple.rb
@@ -13,10 +13,17 @@ class RubyGemsGems_GemSimple < GemSimple
if from_git?
return nil
end
- gem_uri = "#{@gems_url... | add support for username and password in the url | jordimassaguerpla_gems-status | train | rb |
80dbb042cf3936e48f6edb160ac2f62b86483281 | diff --git a/tests/Parts/Channel/ChannelTest.php b/tests/Parts/Channel/ChannelTest.php
index <HASH>..<HASH> 100644
--- a/tests/Parts/Channel/ChannelTest.php
+++ b/tests/Parts/Channel/ChannelTest.php
@@ -266,7 +266,7 @@ final class ChannelTest extends DiscordTestCase
/**
* @covers \Discord\Parts\Channel\Chann... | test: remove allowText assertion on voice channel | teamreflex_DiscordPHP | train | php |
171e9745424b3e3f482c72fd4fb98ac1f966faac | diff --git a/library/Garp/Cache/Store/Versioned.php b/library/Garp/Cache/Store/Versioned.php
index <HASH>..<HASH> 100755
--- a/library/Garp/Cache/Store/Versioned.php
+++ b/library/Garp/Cache/Store/Versioned.php
@@ -57,8 +57,7 @@ class Garp_Cache_Store_Versioned {
public function read($key) {
$cache = Zend... | Prevent unnecessary call to backend cache | grrr-amsterdam_garp3 | train | php |
af9c60180df39b97ad6074e7a919d996223fe06d | diff --git a/pkg/oauth/server/osinserver/tokengen.go b/pkg/oauth/server/osinserver/tokengen.go
index <HASH>..<HASH> 100644
--- a/pkg/oauth/server/osinserver/tokengen.go
+++ b/pkg/oauth/server/osinserver/tokengen.go
@@ -2,7 +2,6 @@ package osinserver
import (
"encoding/base64"
- "io"
"strings"
"crypto/rand"
@... | Simplify reading of random bytes
No need to use io.ReadFull, no need to convert error to string. | openshift_origin | train | go |
d08d59d5120abbb060388f344facae1ff8860ec5 | diff --git a/webwhatsapi/__init__.py b/webwhatsapi/__init__.py
index <HASH>..<HASH> 100755
--- a/webwhatsapi/__init__.py
+++ b/webwhatsapi/__init__.py
@@ -234,12 +234,16 @@ class WhatsAPIDriver(object):
EC.visibility_of_element_located((By.CSS_SELECTOR, self._SELECTORS['mainPage']))
)
- def g... | Added custom filename option for get_qr | mukulhase_WebWhatsapp-Wrapper | train | py |
ad55bf207d96abe23fcdb5cc7156d06b1984cf10 | diff --git a/src/Prettus/Repository/Eloquent/BaseRepository.php b/src/Prettus/Repository/Eloquent/BaseRepository.php
index <HASH>..<HASH> 100644
--- a/src/Prettus/Repository/Eloquent/BaseRepository.php
+++ b/src/Prettus/Repository/Eloquent/BaseRepository.php
@@ -670,10 +670,13 @@ abstract class BaseRepository implement... | BUGFIX: If an array $attributes exists in the model, its data is written to the table when the repository is updated (#<I>)
Details in test:
<URL> | andersao_l5-repository | train | php |
70ed53045e50c3970a02f0a531e78eba1058b208 | diff --git a/api/log_test.go b/api/log_test.go
index <HASH>..<HASH> 100644
--- a/api/log_test.go
+++ b/api/log_test.go
@@ -52,7 +52,7 @@ func (s *LogSuite) TearDownSuite(c *gocheck.C) {
func (s *LogSuite) TestLogRemoveAll(c *gocheck.C) {
a := app.App{Name: "words"}
- request, err := http.NewRequest("DELETE", "/log... | api: fixed url for log in tests. | tsuru_tsuru | train | go |
5f52dc66a31f08bc2ee8393f2e9d2fedc52359a9 | diff --git a/openquake/commands/engine.py b/openquake/commands/engine.py
index <HASH>..<HASH> 100644
--- a/openquake/commands/engine.py
+++ b/openquake/commands/engine.py
@@ -76,13 +76,6 @@ def run_job(job_ini, log_level='info', log_file=None, exports='',
return job_id
-def run_tile(job_ini, sites_slice):
- ... | Removed unused code [skip CI] | gem_oq-engine | train | py |
027cef57e15c1c86506af2d5b3f9ab182fe57e97 | diff --git a/test/test_trace_output.rb b/test/test_trace_output.rb
index <HASH>..<HASH> 100644
--- a/test/test_trace_output.rb
+++ b/test/test_trace_output.rb
@@ -41,13 +41,17 @@ class TestTraceOutput < Rake::TestCase # :nodoc:
end
def test_trace_issues_single_io_for_args_multiple_strings_and_alternate_sep
+ ... | Suppress deprecation warning for $\ since ruby <I> | ruby_rake | train | rb |
d803b303886d569cff16bf975567b3d909e6a780 | diff --git a/cake/tests/cases/console/libs/tasks/model.test.php b/cake/tests/cases/console/libs/tasks/model.test.php
index <HASH>..<HASH> 100644
--- a/cake/tests/cases/console/libs/tasks/model.test.php
+++ b/cake/tests/cases/console/libs/tasks/model.test.php
@@ -647,8 +647,9 @@ array(
//'on' => 'create', // Limit ... | Fix Model validation bake tests for Windows. | cakephp_cakephp | train | php |
1f31b5dfc3077f7a4170f234ed1a57986e1b9e79 | diff --git a/services/transaction/get_receipt.js b/services/transaction/get_receipt.js
index <HASH>..<HASH> 100644
--- a/services/transaction/get_receipt.js
+++ b/services/transaction/get_receipt.js
@@ -29,6 +29,7 @@ const GetReceiptKlass = function(params) {
params = params || {};
oThis.transactionHash = params.... | name to map handle in receipt service. | OpenSTFoundation_openst-platform | train | js |
b9398c30b64dd5db193207c3aaad81d4dbb29015 | diff --git a/setting.go b/setting.go
index <HASH>..<HASH> 100644
--- a/setting.go
+++ b/setting.go
@@ -28,8 +28,8 @@ type QorWidgetSettingInterface interface {
// QorWidgetSetting default qor widget setting struct
type QorWidgetSetting struct {
Name string `gorm:"primary_key"`
- WidgetType string `gorm:"pri... | Set max length for widget type, scope | qor_widget | train | go |
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.