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 |
|---|---|---|---|---|---|
864f25b1125b314ceb01464653e07457a3a81e9e | diff --git a/src/main/java/org/jfree/graphics2d/svg/ImageElement.java b/src/main/java/org/jfree/graphics2d/svg/ImageElement.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jfree/graphics2d/svg/ImageElement.java
+++ b/src/main/java/org/jfree/graphics2d/svg/ImageElement.java
@@ -74,5 +74,20 @@ public final class... | Provide toString() for debugging. | jfree_jfreesvg | train | java |
bb1af4e6cbf27f9d8452f00d02197a8e751c8eca | diff --git a/habra_favorites/loaders.py b/habra_favorites/loaders.py
index <HASH>..<HASH> 100644
--- a/habra_favorites/loaders.py
+++ b/habra_favorites/loaders.py
@@ -10,6 +10,13 @@ from .items import FavoriteItem
RATING_REGEX = re.compile(ur'Всего (\d+): ↑(\d+) и ↓(\d+)', re.UNICODE)
+def process_comments(value):... | Added a check for comments' existing. | ykalchevskiy_habra-favorites | train | py |
baa5c8469119afe7fbccbdf52f0bee775dc8da3f | diff --git a/test/query-select.js b/test/query-select.js
index <HASH>..<HASH> 100644
--- a/test/query-select.js
+++ b/test/query-select.js
@@ -28,7 +28,34 @@ describe('monoxide.query() using $select', function() {
});
});
+ // See issue #14
+ it('should select deeply nested with boolean', function(finish) {
+ m... | TEST: Check for corruption of objects based on string "1" booleans | hash-bang_Monoxide | train | js |
0268b52f22fce6ce57c5d4f96040d5865f3d173f | diff --git a/haphilipsjs/__init__.py b/haphilipsjs/__init__.py
index <HASH>..<HASH> 100644
--- a/haphilipsjs/__init__.py
+++ b/haphilipsjs/__init__.py
@@ -143,14 +143,9 @@ class PhilipsTV(object):
self.protocol = "http"
self.port = 1925
- # for devices with notify support we must have... | Adjust timeouts somewhat and allow two connections | danielperna84_ha-philipsjs | train | py |
8abf644c0e6730adc470ffab25438c4fb3c455e6 | diff --git a/lib/parse.js b/lib/parse.js
index <HASH>..<HASH> 100644
--- a/lib/parse.js
+++ b/lib/parse.js
@@ -37,7 +37,7 @@ exports.evaluate = function(content, options, isDocument) {
content = content.toString();
if (typeof content === 'string') {
- var useHtmlParser2 = options.xmlMode || options.useHtml... | Rename `useHtmlParser2` option
This flag is used to control parsing behavior internally, but it is not
intended for use by consumers. Prefix the name with an underscore in
order to discourage users from relying on it. | oyyd_cheerio-without-node-native | train | js,js |
04b62d6439a26ed384ec420617265b8358a67b62 | diff --git a/cmd/policies.go b/cmd/policies.go
index <HASH>..<HASH> 100644
--- a/cmd/policies.go
+++ b/cmd/policies.go
@@ -480,3 +480,32 @@ func filterTeamsByUser(client *api.Client, teams []envelope.Team,
close(teamChan)
}()
}
+
+// Fetch all policies and policy-attachments for the org. The two steps are
+// ind... | cmd: policies: test: Fetch all policies and attachments
Fetch all policies and policy-attachments for the org. Do it in
parallel. | manifoldco_torus-cli | train | go |
e0e516cd50882bc8de500d164cd7c28eacd64430 | diff --git a/src/Illuminate/Pipeline/Pipeline.php b/src/Illuminate/Pipeline/Pipeline.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Pipeline/Pipeline.php
+++ b/src/Illuminate/Pipeline/Pipeline.php
@@ -13,7 +13,7 @@ class Pipeline implements PipelineContract
/**
* The container implementation.
*
-... | improve property type (#<I>) | laravel_framework | train | php |
f30339a7025f45dfec455f5e5488925a643673d5 | diff --git a/src/JMS/Serializer/XmlDeserializationVisitor.php b/src/JMS/Serializer/XmlDeserializationVisitor.php
index <HASH>..<HASH> 100644
--- a/src/JMS/Serializer/XmlDeserializationVisitor.php
+++ b/src/JMS/Serializer/XmlDeserializationVisitor.php
@@ -150,7 +150,8 @@ class XmlDeserializationVisitor extends AbstractV... | Starting from php <I> there is a bc break bugfix in the simplexml parser, the new behaviour is more strict.
Reported in <URL> | schmittjoh_serializer | train | php |
4a12506c3b4753336e675c13cb63913d85dea58b | diff --git a/lib/outpost/scouts/ping.rb b/lib/outpost/scouts/ping.rb
index <HASH>..<HASH> 100644
--- a/lib/outpost/scouts/ping.rb
+++ b/lib/outpost/scouts/ping.rb
@@ -1,9 +1,4 @@
-begin
- require 'net/ping/external'
-rescue LoadError => e
- puts "Please install net-ping gem: gem install net-ping".
- raise
-end
+requ... | Remove rescue of loaderror in ping scout, as it is now obsolete | vinibaggio_outpost | train | rb |
0cda3b3bb8b966a5e5b6951c3f4101f47601a620 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@ def read(fname):
return io.open(file_path, encoding='utf-8').read()
-version = '0.7.2'
+version = '0.7.3.dev0'
setuptools.setup( | Back to development: <I> | ecmwf_cfgrib | train | py |
aa518199197683c6dbd4bbf683fe52bac5ca84da | diff --git a/zealdb.py b/zealdb.py
index <HASH>..<HASH> 100644
--- a/zealdb.py
+++ b/zealdb.py
@@ -112,6 +112,8 @@ class ZealDB(object):
'''Enter ZealDB context. Opens a connection to the database.'''
self.open()
+ return self
+
def __exit__(self, exc_type, exc_value, exc_traceback):
... | Forgot to return self from ZealDB's context __enter__() | vedvyas_doxytag2zealdb | train | py |
bf8d8ab90c4c0058d2dcbb322a3a2dd8428f12da | diff --git a/easy_select2/widgets.py b/easy_select2/widgets.py
index <HASH>..<HASH> 100644
--- a/easy_select2/widgets.py
+++ b/easy_select2/widgets.py
@@ -19,10 +19,8 @@ SELECT2_CSS = getattr(
SELECT2_USE_BUNDLED_JQUERY = getattr(
settings, 'SELECT2_USE_BUNDLED_JQUERY', True)
-if django.VERSION[1] <= 7: # djan... | Same logic, better coverage test result. | asyncee_django-easy-select2 | train | py |
a08eceea754675a63cd859b88552cd19df269301 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -196,7 +196,7 @@ function DiscordClient(options) {
KAi = setInterval(function() {
//Send Keep Alive Data
if (ws.readyState == 1) {
- ws.send(JSON.stringify({op: 1, d: Date.now()}));
+ ... | Change to sequence for new keep alive data | izy521_discord.io | train | js |
f445de2574366995303747cf2b9e977e9cfb1ab2 | diff --git a/h2o-core/src/main/java/water/H2O.java b/h2o-core/src/main/java/water/H2O.java
index <HASH>..<HASH> 100644
--- a/h2o-core/src/main/java/water/H2O.java
+++ b/h2o-core/src/main/java/water/H2O.java
@@ -1833,7 +1833,7 @@ final public class H2O {
*/
public static boolean checkUnsupportedJava() {
Stri... | PUBDEV-<I>: Enable Java <I> support | h2oai_h2o-3 | train | java |
d5799a1f376537ca755bb4fa0364b6e34ed4f08f | diff --git a/providers/http/webroot/webroot.go b/providers/http/webroot/webroot.go
index <HASH>..<HASH> 100644
--- a/providers/http/webroot/webroot.go
+++ b/providers/http/webroot/webroot.go
@@ -33,12 +33,12 @@ func (w *HTTPProvider) Present(domain, token, keyAuth string) error {
var err error
challengeFilePath :... | Tighten permissions on challenge files and directories | go-acme_lego | train | go |
6a3b75e06c8e7e46b734b0bb3cb770e7c6e768b3 | diff --git a/proxylib/proxylib_test.go b/proxylib/proxylib_test.go
index <HASH>..<HASH> 100644
--- a/proxylib/proxylib_test.go
+++ b/proxylib/proxylib_test.go
@@ -121,8 +121,10 @@ func TestOnNewConnection(t *testing.T) {
func checkAccessLogs(t *testing.T, logServer *test.AccessLogServer, expPasses, expDrops int) {
t... | proxylib: Fix unit test flake when counting access log entries
Modify the access log check function to allow for upto 5 seconds to
receive the logs, but also to stop waiting after <I> milliseconds if
the expecgted number of passes and drops have been received. The
additional time allows for successful completion in re... | cilium_cilium | train | go |
27ed07b61e718f106091f6b978c9227efe47a3c4 | diff --git a/src/dialogs-default-translations.js b/src/dialogs-default-translations.js
index <HASH>..<HASH> 100644
--- a/src/dialogs-default-translations.js
+++ b/src/dialogs-default-translations.js
@@ -130,6 +130,23 @@
DIALOGS_YES: "确认",
DIALOGS_NO: "取消"
});
+
+ $trans... | Update dialogs-default-translations.js
Updated with Swedish translations. | m-e-conroy_angular-dialog-service | train | js |
6119928610dcf7ec9c1ce92a87661cc109bce72b | diff --git a/src/ui_components/jf_tree/jf_tree_api.js b/src/ui_components/jf_tree/jf_tree_api.js
index <HASH>..<HASH> 100644
--- a/src/ui_components/jf_tree/jf_tree_api.js
+++ b/src/ui_components/jf_tree/jf_tree_api.js
@@ -803,6 +803,13 @@ export function JFTreeApi($q, $timeout, AdvancedStringMatch, ContextMenuService)... | jf-tree: bringNodeToView | jfrog_jfrog-ui-essentials | train | js |
a82d20030ab18bb430a1abd302f1c6189a568dc3 | diff --git a/lib/loops/engine.rb b/lib/loops/engine.rb
index <HASH>..<HASH> 100644
--- a/lib/loops/engine.rb
+++ b/lib/loops/engine.rb
@@ -83,7 +83,7 @@ class Loops::Engine
def load_loop_class(name, config)
loop_name = config['loop_name'] || name
- klass_files = [Loops.root + "app/loops/#{loop_name}_... | Use Loops.loops_root directory to find loops classes | kovyrin_loops | train | rb |
4e2a6aee0fd63ffdd67074d3763def4377acf406 | diff --git a/pkg/backend/display/rows.go b/pkg/backend/display/rows.go
index <HASH>..<HASH> 100644
--- a/pkg/backend/display/rows.go
+++ b/pkg/backend/display/rows.go
@@ -327,7 +327,7 @@ func (data *resourceRowData) getInfoColumn() string {
diagMsg += msg
}
- changes := data.getDiffInfo()
+ changes := data.getDi... | Ensure we show the properties that changed when doing a multi-stage replace. (#<I>) | pulumi_pulumi | train | go |
65d7d1ba5528a18130607d72a763e59850f81bef | diff --git a/test/integration/trackable_test.rb b/test/integration/trackable_test.rb
index <HASH>..<HASH> 100644
--- a/test/integration/trackable_test.rb
+++ b/test/integration/trackable_test.rb
@@ -10,8 +10,8 @@ class TrackableHooksTest < ActionDispatch::IntegrationTest
sign_in_as_user
user.reload
- ass... | Change test to use acts_like? so that we can have DateTime fields | plataformatec_devise | train | rb |
401e84624ce26624aeb3a282e62b87ec3e81eb90 | diff --git a/owslib/util.py b/owslib/util.py
index <HASH>..<HASH> 100644
--- a/owslib/util.py
+++ b/owslib/util.py
@@ -253,7 +253,7 @@ def testXMLAttribute(element, attribute):
if element is not None:
attrib = element.get(attribute)
if attrib is not None:
- return attrib.strip()
+ ... | Restrict stripped chars in testXMLAttribute | geopython_OWSLib | train | py |
9596cd23f5b1abafe162a79e107f4e8a44d64084 | diff --git a/schema.js b/schema.js
index <HASH>..<HASH> 100644
--- a/schema.js
+++ b/schema.js
@@ -163,8 +163,6 @@ class NodeType {
return this.contentExpr.matches(attrs, content)
}
- get ephemeral() { return false }
-
static compile(nodes, schema) {
let result = Object.create(null)
nodes.forEac... | Remove ephemeral note type flag
We'll need to address the problem it solves in a different way | ProseMirror_prosemirror-model | train | js |
6feaa42a007fe075932025261f6f57b28fbaa3c5 | diff --git a/faker/tests/hu_HU/__init__.py b/faker/tests/hu_HU/__init__.py
index <HASH>..<HASH> 100644
--- a/faker/tests/hu_HU/__init__.py
+++ b/faker/tests/hu_HU/__init__.py
@@ -19,4 +19,4 @@ class hu_HU_FactoryTestCase(unittest.TestCase):
for i in range(100):
pcd = Provider.postcode()
- ... | Wrong postcode format bug (silly... :S) fixed. | joke2k_faker | train | py |
f96bcbf1150c723a1be09d42fe7379d55fdbb2fa | diff --git a/lib/ronin/program/options.rb b/lib/ronin/program/options.rb
index <HASH>..<HASH> 100644
--- a/lib/ronin/program/options.rb
+++ b/lib/ronin/program/options.rb
@@ -72,7 +72,7 @@ module Ronin
def options(&block)
self.separator ' Options:'
- block.call(self) if block
+ block.ca... | Don't pass anything to the block given to Options#options. | ronin-ruby_ronin | train | rb |
ce360e2f7dcdba5b4bce9de71cb69feb57b6eeed | diff --git a/python/thunder/utils/context.py b/python/thunder/utils/context.py
index <HASH>..<HASH> 100644
--- a/python/thunder/utils/context.py
+++ b/python/thunder/utils/context.py
@@ -472,11 +472,11 @@ class ThunderContext():
from thunder.rdds.fileio.imagesloader import ImagesLoader
loader ... | wire "ext=" parameter through convertImagesToSeries with shuffle=True
Looks like this one just never got set up correctly. | thunder-project_thunder | train | py |
268ddc165d73075c9d9e943b53edbd3d74bb3bf7 | diff --git a/spec/support/integration_helper.rb b/spec/support/integration_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/support/integration_helper.rb
+++ b/spec/support/integration_helper.rb
@@ -18,7 +18,7 @@ module IntegrationSupport
end
end
- def with_plugin(plugin_path, contents) #
+ ... | not fixing Lint/NestedMethodDefinition
there's some voodoo going on here i don't want to figure out how to
unwind | chef_ohai | train | rb |
7ca880a3bdcf7f7aa9741690853cc71623178af5 | diff --git a/analyzers/FileInfo/submodules/submodule_oletools.py b/analyzers/FileInfo/submodules/submodule_oletools.py
index <HASH>..<HASH> 100644
--- a/analyzers/FileInfo/submodules/submodule_oletools.py
+++ b/analyzers/FileInfo/submodules/submodule_oletools.py
@@ -28,7 +28,7 @@ class OLEToolsSubmodule(SubmoduleBasecl... | #<I> manage OpenXML files detected as zip thx to @githule | TheHive-Project_Cortex-Analyzers | train | py |
1aefb2f96dc7ea11f3fef5d2a1dc020f52b0bcba | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -6,7 +6,11 @@ const tc = require('./tc');
const localHostTc = require('./localHostTc');
function verify(options) {
- if (
+ if (options.localhost) {
+ if (!Number.isInteger(options.rtt)) {
+ throw... | check rtt for localhost | sitespeedio_throttle | train | js |
fba4d5efc16554f1176fda44404432fe2fae97cc | diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/explorers/explorerNavHandler.js b/bundles/org.eclipse.orion.client.ui/web/orion/explorers/explorerNavHandler.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.ui/web/orion/explorers/explorerNavHandler.js
+++ b/bundles/org.eclipse.orion.clien... | arrow down/up does not show item in outline view (at top and bottom) | eclipse_orion.client | train | js |
7330db78d29442a853974c61ba2a89dd58405203 | diff --git a/spec/unit/resource/file/verification/json_spec.rb b/spec/unit/resource/file/verification/json_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/resource/file/verification/json_spec.rb
+++ b/spec/unit/resource/file/verification/json_spec.rb
@@ -51,10 +51,16 @@ describe Chef::Resource::File::Verification::... | Change rspec to reflect the behavior of JSONCompat | chef_chef | train | rb |
d7998c3ca5e5a2c118fd7e382b3360c3ed563c90 | diff --git a/src/share/classes/com/sun/tools/javac/comp/TransTypes.java b/src/share/classes/com/sun/tools/javac/comp/TransTypes.java
index <HASH>..<HASH> 100644
--- a/src/share/classes/com/sun/tools/javac/comp/TransTypes.java
+++ b/src/share/classes/com/sun/tools/javac/comp/TransTypes.java
@@ -1,5 +1,5 @@
/*
- * Copyr... | <I>: javac crash with method references plus lambda plus var args | wmdietl_jsr308-langtools | train | java |
f7a4db4d91c13277e22a5c6aed8cdb9d00db6999 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -565,7 +565,7 @@ function ui5Build(sUI5SrcPath, sUI5TargetPath, sUI5Version, oOptions = {}) {
rename(path => {
// normal path: sap/m/themes/sap_belize
// update path: sap.... | Make ui5-lib-util work under windows
Some paths were split by a hardcoded '/' --> did not work on windows, as
it uses '\' --> use 'path.sep' in these cases ('path.sep' returns the
OS-specific path seperator) | pulseshift_ui5-lib-util | train | js |
bd7a7f4218b6d6e7a136370d4f69e3e15771589c | diff --git a/liquibase-core/src/main/java/liquibase/sqlgenerator/core/CreateProcedureGenerator.java b/liquibase-core/src/main/java/liquibase/sqlgenerator/core/CreateProcedureGenerator.java
index <HASH>..<HASH> 100644
--- a/liquibase-core/src/main/java/liquibase/sqlgenerator/core/CreateProcedureGenerator.java
+++ b/liqu... | CORE-<I> MSSQL createProcedure for CREATE MERGE AS procedures need a trailing semicolon | liquibase_liquibase | train | java |
76bbe894df49581cf48269ae9448fe912e067659 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -17,6 +17,7 @@ Bluebird
.try( activate )
.then( () => process.exit( 0 ) )
.catch( ( err ) => {
+ console.lineLength = 9999;
console.line( true );
if ( err instanceof ProcedureError ) {
console.error( err... | Error exceptions are now printed ignoring console lineLength | Zelgadis87_npm-versionator | train | js |
be1ba9d11d999ea285d5353bf8c872eaefa1f4ef | diff --git a/module/__init__.py b/module/__init__.py
index <HASH>..<HASH> 100644
--- a/module/__init__.py
+++ b/module/__init__.py
@@ -481,6 +481,10 @@ class Connection(object):
self._init_x()
def _init_x(self):
+ if core is None:
+ raise XcffibException("No core protocol object has be... | Better error when xcffib.xproto hasn't been imported
Closes #<I> | tych0_xcffib | train | py |
5a3013fea562b1eea3fc2ff3730aaa16f70ea05b | diff --git a/packages/components/bolt-image/src/image.js b/packages/components/bolt-image/src/image.js
index <HASH>..<HASH> 100644
--- a/packages/components/bolt-image/src/image.js
+++ b/packages/components/bolt-image/src/image.js
@@ -223,7 +223,7 @@ class BoltImage extends withLitHtml() {
? srcset || ... | chore: add missing undefined fallback to srcset behavior | bolt-design-system_bolt | train | js |
4257ad37d1ab216a7ee3d0021c9e24118837d3be | diff --git a/app/controllers/krikri/records_controller.rb b/app/controllers/krikri/records_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/krikri/records_controller.rb
+++ b/app/controllers/krikri/records_controller.rb
@@ -95,8 +95,8 @@ module Krikri
# with Blacklight v5.10.
# @param String id... | Fix Solr document ID builder regression which modifies item container | dpla_KriKri | train | rb |
94a3d494ce5cafb7cca67fb86dcc614f61438037 | diff --git a/lib/adb_sdklib/raw_image.rb b/lib/adb_sdklib/raw_image.rb
index <HASH>..<HASH> 100644
--- a/lib/adb_sdklib/raw_image.rb
+++ b/lib/adb_sdklib/raw_image.rb
@@ -46,5 +46,9 @@ module AdbSdkLib
def bpp()
@image.bpp
end
+
+ def point_to_index(x,y)
+ return (x*(bpp >> 3))+(y*((bpp >> 3)*(... | add point_to_index method to raw_image | yoyo0906_ruby-adb-sdklib | train | rb |
149a1e16d492e8a313fb04686ae64accaeeda06e | diff --git a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/sqli... | cache quoted column names in SQLite3
we do this in other adapters, and it's a nice speed improvement | rails_rails | train | rb |
57e93ded81e0d6969f15edb3ab7eb9da48f5633f | diff --git a/lib/parallel_cucumber/cli.rb b/lib/parallel_cucumber/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/parallel_cucumber/cli.rb
+++ b/lib/parallel_cucumber/cli.rb
@@ -44,7 +44,7 @@ module ParallelCucumber
fail("File '#{script}' is not executable") unless File.executable?(script)
option... | Allow fractional thread-delay value | badoo_parallel_cucumber | train | rb |
6fa1fe06d5ee856e23ce6fdd1ff3007cb3b63708 | diff --git a/lib/brightbox-cli/commands/servers-update.rb b/lib/brightbox-cli/commands/servers-update.rb
index <HASH>..<HASH> 100644
--- a/lib/brightbox-cli/commands/servers-update.rb
+++ b/lib/brightbox-cli/commands/servers-update.rb
@@ -14,6 +14,9 @@ module Brightbox
c.desc "Don't base64 encode the user data"
... | [#<I>] Support update of compatibility_mode for Server | brightbox_brightbox-cli | train | rb |
7b5c00c0208543cfef17444da84653f218031ab3 | diff --git a/yolk/cli.py b/yolk/cli.py
index <HASH>..<HASH> 100755
--- a/yolk/cli.py
+++ b/yolk/cli.py
@@ -20,6 +20,7 @@ License : GNU General Public License Version 2 (See COPYING)
__docformat__ = 'restructuredtext'
+import os
import sys
import optparse
import pkg_resources
@@ -113,6 +114,12 @@ def show_distri... | Don't detect workingenv dirs as development | cakebread_yolk | train | py |
71b6e5251e930a6e20ed34238c60cdefbccc4e1e | diff --git a/src/Promise.php b/src/Promise.php
index <HASH>..<HASH> 100644
--- a/src/Promise.php
+++ b/src/Promise.php
@@ -36,8 +36,8 @@ interface Promise
* If you do not care about one of the cases, you can set the corresponding callable to null
* The callback will be called when the value arrived and neve... | Corrected phpdoc of then | php-http_promise | train | php |
f61de9da41ee7da7d67457af56732f73231e06be | diff --git a/test/spec/notifying_block_spec.rb b/test/spec/notifying_block_spec.rb
index <HASH>..<HASH> 100644
--- a/test/spec/notifying_block_spec.rb
+++ b/test/spec/notifying_block_spec.rb
@@ -65,7 +65,7 @@ describe Poise::Provider::NotifyingBlock do
end
end # /context without updated inner resources
- con... | I should really stop committing :focus. | poise_poise | train | rb |
eeeacc3e27f334a178275345dcfd79b70f386075 | diff --git a/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleAgent.java b/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleAgent.java
index <HASH>..<HASH> 100644
--- a/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleAgent.java
+++ b/aeron-cluster/src/main/java/io/aeron/cluster/Consens... | [Java] Don't do run cluster unexpected termination code in counter unavailable handler. Set state and handle it after. | real-logic_aeron | train | java |
8b40345be607ba3229ea8c550ee850569cdf7296 | diff --git a/autograd/numpy/numpy_grads.py b/autograd/numpy/numpy_grads.py
index <HASH>..<HASH> 100644
--- a/autograd/numpy/numpy_grads.py
+++ b/autograd/numpy/numpy_grads.py
@@ -2,7 +2,7 @@ from __future__ import absolute_import
import numpy as onp
import operator as op
-from autograd.core import getval, primitive... | numpy_grads no longer does any type checking of variables | HIPS_autograd | train | py |
86b642722dd2b6e17456a3007196addda3799f4d | diff --git a/lib/mongoid/relations/many.rb b/lib/mongoid/relations/many.rb
index <HASH>..<HASH> 100644
--- a/lib/mongoid/relations/many.rb
+++ b/lib/mongoid/relations/many.rb
@@ -21,11 +21,11 @@ module Mongoid
size == 0
end
- # Creates a new document on the references many relation. This will
-... | Small indentation [ci skip] | mongodb_mongoid | train | rb |
f050c0429beffa13d94ad303c1730fef5b44f544 | diff --git a/pymysql/tests/test_nextset.py b/pymysql/tests/test_nextset.py
index <HASH>..<HASH> 100644
--- a/pymysql/tests/test_nextset.py
+++ b/pymysql/tests/test_nextset.py
@@ -1,6 +1,11 @@
from pymysql.tests import base
from pymysql import util
+try:
+ import unittest2 as unittest
+except ImportError:
+ im... | Add multi cursor test currently failed. | PyMySQL_PyMySQL | train | py |
a45196dc978564428646b6e302e9367c0dbb363e | diff --git a/system/src/Grav/Common/Page/Page.php b/system/src/Grav/Common/Page/Page.php
index <HASH>..<HASH> 100644
--- a/system/src/Grav/Common/Page/Page.php
+++ b/system/src/Grav/Common/Page/Page.php
@@ -1079,10 +1079,6 @@ class Page
$this->publish_date = Utils::date2timestamp($var);
}
- ... | regular `date:` header should not impact published visibility | getgrav_grav | train | php |
2ab67049387e34dcf5ca2732889754798070cbe3 | diff --git a/poloniex/poloniex.py b/poloniex/poloniex.py
index <HASH>..<HASH> 100644
--- a/poloniex/poloniex.py
+++ b/poloniex/poloniex.py
@@ -116,3 +116,7 @@ class Poloniex(PoloniexPublic):
response = self._private_session.post(self._private_url,
data=params, auth=Poloniex._PoloniexAuth(self.... | add returnBalances in trading API | Aula13_poloniex | train | py |
8b726eae5e004aef6abb27b65825b02ba13adcc6 | diff --git a/src/Bkwld/Decoy/Models/Encoding.php b/src/Bkwld/Decoy/Models/Encoding.php
index <HASH>..<HASH> 100644
--- a/src/Bkwld/Decoy/Models/Encoding.php
+++ b/src/Bkwld/Decoy/Models/Encoding.php
@@ -139,8 +139,8 @@ class Encoding extends Base {
*/
public function getTagAttribute() {
- // Require and for the... | Fixing a bug in the HTML5 tag generation | BKWLD_decoy | train | php |
d3bcd9995765acc25cc58168fe95b536be6dc78a | diff --git a/src/MvcCore/Ext/Routers/ModuleLocalization/UrlByRoute.php b/src/MvcCore/Ext/Routers/ModuleLocalization/UrlByRoute.php
index <HASH>..<HASH> 100644
--- a/src/MvcCore/Ext/Routers/ModuleLocalization/UrlByRoute.php
+++ b/src/MvcCore/Ext/Routers/ModuleLocalization/UrlByRoute.php
@@ -49,10 +49,13 @@ trait UrlByRo... | Direct usage of deprecated __CLASS__ constant conditioned. | mvccore_ext-router-module-localization | train | php |
91488e83968791b723bfd4ddd2da4e7ca15abf19 | diff --git a/exchangelib/account.py b/exchangelib/account.py
index <HASH>..<HASH> 100644
--- a/exchangelib/account.py
+++ b/exchangelib/account.py
@@ -100,14 +100,6 @@ class Account(object):
raise ValueError("Expected 'protocol' to be a Protocol, got %s" % self.protocol)
log.debug('Added account: ... | Remove Account.folders which has been deprecated since <I> | ecederstrand_exchangelib | train | py |
d24e168c5b28db82df3ba60870b9f67aa8235854 | diff --git a/src/playbacks/html5_video/html5_video.js b/src/playbacks/html5_video/html5_video.js
index <HASH>..<HASH> 100644
--- a/src/playbacks/html5_video/html5_video.js
+++ b/src/playbacks/html5_video/html5_video.js
@@ -383,6 +383,14 @@ export default class HTML5Video extends Playback {
}
_onError() {
+ c... | feat(html5_video): create player error on playback error | clappr_clappr | train | js |
396aa852e74f48bdc70c87c959f9760564c8bc5a | diff --git a/indra/tools/reading/readers/trips/__init__.py b/indra/tools/reading/readers/trips/__init__.py
index <HASH>..<HASH> 100644
--- a/indra/tools/reading/readers/trips/__init__.py
+++ b/indra/tools/reading/readers/trips/__init__.py
@@ -4,9 +4,11 @@ import random
import logging
import threading
import subproce... | Clean up the text before sending it to TRIPS. | sorgerlab_indra | train | py |
44323b08e932f7cdc304d80a3fb342a4b32e79f9 | diff --git a/default_test.go b/default_test.go
index <HASH>..<HASH> 100644
--- a/default_test.go
+++ b/default_test.go
@@ -102,6 +102,30 @@ func TestFormatEmail(t *testing.T) {
testValid(t, "email", str)
testInvalid(t, "email", "somebody@somewhere@com")
+
+ validEmails := []string{
+ "blah@gmail.com",
+ "test@d... | adds a test with some unusual email addresses | go-openapi_strfmt | train | go |
d8942ce75b3ebaf207bad6ea6da759a166ad8d65 | diff --git a/can/interfaces/pcan/pcan.py b/can/interfaces/pcan/pcan.py
index <HASH>..<HASH> 100644
--- a/can/interfaces/pcan/pcan.py
+++ b/can/interfaces/pcan/pcan.py
@@ -9,6 +9,7 @@ from can.interfaces.pcan.PCANBasic import *
from can.bus import BusABC
from can.message import Message
from can import CanError
+impor... | Use configured bitrate in pcan. Closes #<I>
(cherry picked from commit bd<I>d<I>) | hardbyte_python-can | train | py |
616a243dcc0e65caf439b8f23477c0992235dc9b | diff --git a/tests/http/test_request_data_property.py b/tests/http/test_request_data_property.py
index <HASH>..<HASH> 100644
--- a/tests/http/test_request_data_property.py
+++ b/tests/http/test_request_data_property.py
@@ -30,6 +30,15 @@ def test_json_content_type_with_json_body():
assert request.data == {'key': '... | Add test for a json body of 'bytes' type
When creating a post request with the requests library in
python 3 (tested on <I>) passing a dict to the json parameter
the body generated is of type 'bytes' and not 'str'. | pipermerriam_flex | train | py |
b6149bc1b855ce4f800d3e0e5264b2d70816719a | diff --git a/lib/faker/internet.rb b/lib/faker/internet.rb
index <HASH>..<HASH> 100644
--- a/lib/faker/internet.rb
+++ b/lib/faker/internet.rb
@@ -12,17 +12,28 @@ module Faker
def user_name(name = nil)
return name.scan(/\w+/).shuffle.join(%w(. _).rand).downcase if name
- [
+ fix... | fixed german umlauts in domain names | stympy_faker | train | rb |
829e47681a23be06a3433c15ecd3d9351aba6142 | diff --git a/java/src/org/openqa/selenium/remote/http/netty/NettyClient.java b/java/src/org/openqa/selenium/remote/http/netty/NettyClient.java
index <HASH>..<HASH> 100644
--- a/java/src/org/openqa/selenium/remote/http/netty/NettyClient.java
+++ b/java/src/org/openqa/selenium/remote/http/netty/NettyClient.java
@@ -86,6 ... | [java] Setting a high max redirects
Some cloud users (Sauce Labs in this
case), start many concurrent sessions
and go over their max concurrency.
Those session requests get queued
and a redirect mechanism is used.
When the limit is reached the session
request dies. This change avoids that. | SeleniumHQ_selenium | train | java |
f35852a0b3bc98ffa49c27c4d56dc9bdd8c6048a | diff --git a/hyperas/optim.py b/hyperas/optim.py
index <HASH>..<HASH> 100644
--- a/hyperas/optim.py
+++ b/hyperas/optim.py
@@ -123,6 +123,9 @@ def get_hyperopt_space(parts, hyperopt_params):
def retrieve_data_string(data):
+ '''
+ This assumes 4 spaces for indentation and won't work otherwise
+ '''
d... | Fix indentation problem for data function | maxpumperla_hyperas | train | py |
026e54935f4dd0f22eb0ae4a1606d546a6a33641 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -187,7 +187,9 @@ function Driver (options) {
this._updateBalance()
])
.then(function () {
- if (self._destroyed) return
+ if (self._destroyed) {
+ return Q.reject(new Error('destroyed'))
+ ... | if tim is destroyed before it starts, reject ready promise | tradle_tim-old-engine | train | js |
db7f654cf88c38f98a86bf4dd7bec01c3ee45a11 | diff --git a/icetea_lib/DeviceConnectors/DutProcess.py b/icetea_lib/DeviceConnectors/DutProcess.py
index <HASH>..<HASH> 100755
--- a/icetea_lib/DeviceConnectors/DutProcess.py
+++ b/icetea_lib/DeviceConnectors/DutProcess.py
@@ -16,7 +16,6 @@ DutProcess module.
"""
from icetea_lib.DeviceConnectors.Dut import Dut, Dut... | Removed application specific exit command. (#<I>) | ARMmbed_icetea | train | py |
ac1d1b5db68bc8f2628c5cb4a8c89752d753e087 | diff --git a/src/compiler.js b/src/compiler.js
index <HASH>..<HASH> 100644
--- a/src/compiler.js
+++ b/src/compiler.js
@@ -855,11 +855,12 @@ var Compiler = Object.extend({
var name = block.name.value;
this.emitFuncBegin('b_' + name);
- this.emitLine('var l_super = context.getSuper... | Using `markAsSafe` to preserve `super()` calls | mozilla_nunjucks | train | js |
0dcfdaf1642f354b9ca56973fde7325008051457 | diff --git a/holidays.py b/holidays.py
index <HASH>..<HASH> 100755
--- a/holidays.py
+++ b/holidays.py
@@ -228,10 +228,14 @@ def createHolidaySum(h1, h2):
return HolidaySum
-def CountryHoliday(country, years=[], prov=None, state=None):
+def CountryHoliday(country, years=[], prov=None, state=None, expand=True,
... | Added missing parameters to CountryHoliday (#<I>) | dr-prodigy_python-holidays | train | py |
e94c083a556b277fbd5cb038fb800fa86595ecda | diff --git a/endesive/__init__.py b/endesive/__init__.py
index <HASH>..<HASH> 100644
--- a/endesive/__init__.py
+++ b/endesive/__init__.py
@@ -2,6 +2,6 @@
__author__ = 'Grzegorz Makarewicz'
__license__ = 'MIT'
-__version__ = '2.0.0'
+__version__ = '2.0.1'
__all__ = [__author__, __license__, __version__] | #<I> - accessing pages in big documents | m32_endesive | train | py |
4d8367bc0e5b928335382189230d0a5caf341bc7 | diff --git a/sa/database.go b/sa/database.go
index <HASH>..<HASH> 100644
--- a/sa/database.go
+++ b/sa/database.go
@@ -59,7 +59,7 @@ func NewDbMap(driver string, dbConnect string) (*gorp.DbMap, error) {
return nil, err
}
- logger.Debug(fmt.Sprintf("Connecting to database %s %s", driver, dbConnect))
+ logger.Debu... | Remove logging of dbConnect string.
This can accidentally put passwords in logs. | letsencrypt_boulder | train | go |
67062aef1c167763eb936a96a81b955b91400fa3 | diff --git a/lib/active_rest_client/request.rb b/lib/active_rest_client/request.rb
index <HASH>..<HASH> 100644
--- a/lib/active_rest_client/request.rb
+++ b/lib/active_rest_client/request.rb
@@ -104,11 +104,10 @@ module ActiveRestClient
do_request(etag)
end
result = handle_response(response... | Fixed a bug in etag-not_modified responses not re-caching the correct response | whichdigital_active-rest-client | train | rb,rb |
2b55874584f034b5113359ced6b05c143d31e03c | diff --git a/utils/uname_darwin.go b/utils/uname_darwin.go
index <HASH>..<HASH> 100644
--- a/utils/uname_darwin.go
+++ b/utils/uname_darwin.go
@@ -2,9 +2,12 @@ package utils
import (
"errors"
- "syscall"
)
-func uname() (*syscall.Utsname, error) {
+type Utsname struct {
+ Release [65]byte
+}
+
+func uname() (*U... | utils: fix compilation on Darwin
Although Docker daemon does not work on Darwin, the API client will have
to work. That said, I'm fixing the compilation of the package on Darwin. | moby_moby | train | go,go |
3101b1ff80cdd66206b9f8ff5ff35384b7dbde8c | diff --git a/eli5/formatters/html.py b/eli5/formatters/html.py
index <HASH>..<HASH> 100644
--- a/eli5/formatters/html.py
+++ b/eli5/formatters/html.py
@@ -37,6 +37,10 @@ def format_as_html(explanation, include_styles=True, force_weights=True,
With ``force_weights=False``, weights will not be displayed in a table f... | Add highlight_spaces to docstrings | TeamHG-Memex_eli5 | train | py,py |
372d03b25f21d363138ecf340816dd04fb33ef71 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -1,3 +1,7 @@
+import os
+
+on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
+
extensions = []
templates_path = ['_templates']
source_suffix = '.rst'
@@ -14,5 +18,8 @@ latex_documents = [
('index', '... | Switch to RTD docs theme. | ubernostrum_django-soapbox | train | py |
e176af072bc04a5f573136c6071875efe22cd3a5 | diff --git a/docs/docs.js b/docs/docs.js
index <HASH>..<HASH> 100644
--- a/docs/docs.js
+++ b/docs/docs.js
@@ -231,15 +231,15 @@ $(function () {
'default': 'client',
example: 'pagination-table'
},
- {
- name: 'totalRows',
- ... | Remove docs of totalRows option | wenzhixin_bootstrap-table | train | js |
11677063353cb6a1913d927bc8eb9338bc4c563a | diff --git a/lib/github_changelog_generator/version.rb b/lib/github_changelog_generator/version.rb
index <HASH>..<HASH> 100644
--- a/lib/github_changelog_generator/version.rb
+++ b/lib/github_changelog_generator/version.rb
@@ -1,3 +1,3 @@
module GitHubChangelogGenerator
- VERSION = "1.10.3"
+ VERSION = "1.10.4"
end | Update gemspec to version <I> | github-changelog-generator_github-changelog-generator | train | rb |
c26363e026b1fc196ca488e59e82f1523e6c242a | diff --git a/lib/email_spy/delivery_method.rb b/lib/email_spy/delivery_method.rb
index <HASH>..<HASH> 100644
--- a/lib/email_spy/delivery_method.rb
+++ b/lib/email_spy/delivery_method.rb
@@ -8,6 +8,9 @@ module EmailSpy
end
def deliver!(email)
+ launch messages(email, location(email, settings))
+ end... | Putting the launch logic in a private method | krainboltgreene_email_spy | train | rb |
0c8386a1dec88a3c178982a9f1644d8da0b4ba26 | diff --git a/test/unit/specs/Datepicker.spec.js b/test/unit/specs/Datepicker.spec.js
index <HASH>..<HASH> 100644
--- a/test/unit/specs/Datepicker.spec.js
+++ b/test/unit/specs/Datepicker.spec.js
@@ -644,6 +644,8 @@ describe('Datepicker with open date', () => {
it('should set pageTimestamp to be first day of open d... | Check that openDate is set before testing pageTimestamp | charliekassel_vuejs-datepicker | train | js |
33a2e6afb932a01f4365876dbb353963dfc3ff25 | diff --git a/server/client_http.go b/server/client_http.go
index <HASH>..<HASH> 100644
--- a/server/client_http.go
+++ b/server/client_http.go
@@ -35,8 +35,6 @@ type httpWriter struct {
w http.ResponseWriter
}
-// http context
-
func newClientHTTP(app *App, w http.ResponseWriter, r *http.Request) {
va... | http interface: not support cmds of repl | siddontang_ledisdb | train | go |
195ff29152ba8fd8528609c21600c8ba1e0edfca | diff --git a/lib/soapy_cake/client.rb b/lib/soapy_cake/client.rb
index <HASH>..<HASH> 100644
--- a/lib/soapy_cake/client.rb
+++ b/lib/soapy_cake/client.rb
@@ -58,6 +58,16 @@ module SoapyCake
@logger ||= opts[:logger] || (defined?(::Rails) && ::Rails.logger)
end
+ def log_curl_command(request)
+ cu... | Add method to output calls as curl command | ad2games_soapy_cake | train | rb |
21e071a5da8406aff3a484e0338ea818a6a42579 | diff --git a/scripts/constants.py b/scripts/constants.py
index <HASH>..<HASH> 100644
--- a/scripts/constants.py
+++ b/scripts/constants.py
@@ -15,16 +15,16 @@
import sys
# Kubernetes branch to get the OpenAPI spec from.
-KUBERNETES_BRANCH = "release-1.6"
+KUBERNETES_BRANCH = "release-1.7"
# client version for pa... | Master to follow kubernetes <I> branch | kubernetes-client_python | train | py |
2da75b56540e8edd8d13543783f75af73448cf54 | diff --git a/system/HTTP/Message.php b/system/HTTP/Message.php
index <HASH>..<HASH> 100644
--- a/system/HTTP/Message.php
+++ b/system/HTTP/Message.php
@@ -20,7 +20,7 @@ class Message
protected $protocolVersion;
- protected $validProtocolVersions = ['1.0', '1.1'];
+ protected $validProtocolVersions = ['1.0', '1.1'... | Don't refuse HTTP/2 connections. | codeigniter4_CodeIgniter4 | train | php |
ceb4733a086da41a759018ca31c8d0aac9094c90 | diff --git a/lib/key_path/path.rb b/lib/key_path/path.rb
index <HASH>..<HASH> 100644
--- a/lib/key_path/path.rb
+++ b/lib/key_path/path.rb
@@ -26,11 +26,30 @@ module KeyPath
end
def to_collection
+ collection = {}
s = self.to_a
-
- {:item => {
- :resource_uri => {}
- }}
+ ... | Implements the to_collection method for KeyPath::Path. | nickcharlton_keypath-ruby | train | rb |
883fd008d29fdcaab18b50f47c248e3d112f39ed | diff --git a/addon/hint/show-hint.js b/addon/hint/show-hint.js
index <HASH>..<HASH> 100644
--- a/addon/hint/show-hint.js
+++ b/addon/hint/show-hint.js
@@ -302,7 +302,7 @@
setTimeout(function(){cm.focus();}, 20);
});
- CodeMirror.signal(data, "select", completions[0], hints.firstChild);
+ CodeMirror.... | [show-hint addon] Fire correct hint selection event specific hint is selected
Fixes #<I>. | codemirror_CodeMirror | train | js |
b60598a05dae6f4bc71b6583a9c1e5cf926a1e72 | diff --git a/lib/api/traversing.js b/lib/api/traversing.js
index <HASH>..<HASH> 100644
--- a/lib/api/traversing.js
+++ b/lib/api/traversing.js
@@ -72,9 +72,18 @@ var closest = exports.closest = function(selector) {
var next = exports.next = function() {
if (!this[0]) { return this; }
- var elem = this[0];
- whi... | Fix bug in `next`
Ensure that the `next` method operates over every element in the
collection. | oyyd_cheerio-without-node-native | train | js,js |
c2ef0348039409b4d1e143748e7eb2db8c4d007d | diff --git a/buffalo/cmd/app_generators.go b/buffalo/cmd/app_generators.go
index <HASH>..<HASH> 100644
--- a/buffalo/cmd/app_generators.go
+++ b/buffalo/cmd/app_generators.go
@@ -54,7 +54,8 @@ import (
)
func main() {
- log.Fatal(http.ListenAndServe(":3000", actions.App()))
+ port := defaults.String(os.Getenv("PORT... | PORT should be settable via an ENV var closes #<I> | gobuffalo_buffalo | train | go |
36a20ea7c37d1a0b13d2860729c72b4261c16490 | diff --git a/dispatch/modules/auth/tests.py b/dispatch/modules/auth/tests.py
index <HASH>..<HASH> 100644
--- a/dispatch/modules/auth/tests.py
+++ b/dispatch/modules/auth/tests.py
@@ -1,7 +1,7 @@
from django.test import TestCase
from django.contrib.auth import get_user_model, authenticate, login
from django.db import... | remove ContributorRole from core tests | ubyssey_dispatch | train | py |
168b6cf41787a407518c15d19d8e713b4aa08186 | diff --git a/src/control/ShoppingCart.php b/src/control/ShoppingCart.php
index <HASH>..<HASH> 100644
--- a/src/control/ShoppingCart.php
+++ b/src/control/ShoppingCart.php
@@ -825,8 +825,6 @@ class ShoppingCart extends Controller
// Extend our save operation
$this->extend("onBeforeSave");
- ... | Fix error on save when user not logged in | silvercommerce_shoppingcart | train | php |
524d8f6800861ca02c438fa7c65908221215b82e | diff --git a/test/dot-test.js b/test/dot-test.js
index <HASH>..<HASH> 100644
--- a/test/dot-test.js
+++ b/test/dot-test.js
@@ -130,6 +130,15 @@ describe("lib/dot", function() {
describe("can parse all files in test-data", function() {
var testDataDir = path.resolve(__dirname, "test-data");
+
+ // Hac... | Hack around problem with testling and fs module | dagrejs_dagre-d3 | train | js |
8cb0b39dc30a06ce78a68a662635d61a0b7477d4 | diff --git a/recipe/common.php b/recipe/common.php
index <HASH>..<HASH> 100644
--- a/recipe/common.php
+++ b/recipe/common.php
@@ -134,8 +134,8 @@ task('deploy:prepare', [
'deploy:lock',
'deploy:release',
'deploy:update_code',
- 'deploy:writable',
'deploy:shared',
+ 'deploy:writable',
]);
... | Switch deploy:shared and deploy:writable order | deployphp_deployer | train | php |
568abbde5188dcfa3d87610d2dacb42f46cf2c59 | diff --git a/queries_test.go b/queries_test.go
index <HASH>..<HASH> 100644
--- a/queries_test.go
+++ b/queries_test.go
@@ -252,11 +252,11 @@ func TestError(t *testing.T) {
t.Fatal("Query should fail")
}
- if err, ok := err.(Error); !ok {
- t.Fatalf("Should be sql error, actually %t, %v", err, err)
+ if sqlerr, ... | fix format
err was always nil inside the if; introduced sqlerr to fix it.
%t formats booleans; changed to %T for representation of the type of
value. | denisenkom_go-mssqldb | train | go |
cf7f83866e404ef387a5e0ff4a8e818c0ee95d55 | diff --git a/src/main/java/eu/hansolo/tilesfx/Tile.java b/src/main/java/eu/hansolo/tilesfx/Tile.java
index <HASH>..<HASH> 100644
--- a/src/main/java/eu/hansolo/tilesfx/Tile.java
+++ b/src/main/java/eu/hansolo/tilesfx/Tile.java
@@ -909,6 +909,12 @@ public class Tile extends Control {
}
/**
+ * Returns th... | Added a method to get the MovingAverage object | HanSolo_tilesfx | train | java |
ddcaabd303c4adbe622598ea2645b2049eccfb93 | diff --git a/ext/mini_racer_extension/extconf.rb b/ext/mini_racer_extension/extconf.rb
index <HASH>..<HASH> 100644
--- a/ext/mini_racer_extension/extconf.rb
+++ b/ext/mini_racer_extension/extconf.rb
@@ -17,6 +17,28 @@ if ENV['CXX']
CONFIG['CXX'] = ENV['CXX']
end
+CXX11_TEST = <<EOS
+#if __cplusplus <= 199711L
+# ... | Check for C<I> support and warn if it's missing
Add a test for C<I> support of the compiler and display a warning and
instructions what the users should do in case it's missing.
This closes #<I> | discourse_mini_racer | train | rb |
228ea3b721b4701dfaf50350b74436da3cb7e8ef | diff --git a/src/actions/analytics.js b/src/actions/analytics.js
index <HASH>..<HASH> 100644
--- a/src/actions/analytics.js
+++ b/src/actions/analytics.js
@@ -159,9 +159,9 @@ export function recordImpressions(queryId, impressions = []) {
headers,
appbaseRef: { url, protocol, credentials },
} = getState();
- ... | fix: avoid impressions reacking for app users | appbaseio_reactivecore | train | js |
ad508e8c4ca0da4ee6b3e09a673aea667da003f3 | diff --git a/src/angular-multi-select-styles-helper.js b/src/angular-multi-select-styles-helper.js
index <HASH>..<HASH> 100644
--- a/src/angular-multi-select-styles-helper.js
+++ b/src/angular-multi-select-styles-helper.js
@@ -55,6 +55,10 @@ angular_multi_select_styles_helper.factory('angularMultiSelectStylesHelper', [... | Leaf should not have neither closed nor open caret class | alexandernst_angular-multi-select | train | js |
066285f4d6888f54c18f6384dbf4e918935969a8 | diff --git a/tests/test_conformance.py b/tests/test_conformance.py
index <HASH>..<HASH> 100644
--- a/tests/test_conformance.py
+++ b/tests/test_conformance.py
@@ -461,6 +461,21 @@ a
b
'''.lstrip())
+ def test_sass_unicode(self):
+ self.assertHTML(
+u'''
+a
+:sass
+ #mydiv:before
+ content: "☺"
+... | Test passing unicode to SASS. | mikeboers_PyHAML | train | py |
52b7dafebe3abc7152941e40d0419f4fb449b327 | diff --git a/lib/bud.rb b/lib/bud.rb
index <HASH>..<HASH> 100644
--- a/lib/bud.rb
+++ b/lib/bud.rb
@@ -177,10 +177,8 @@ class Bud
if @initial_port == 0
success = false
15.times do
- #@port = 5000 + rand(20000)
- @port = 0 + rand(1200)
+ @port = 5000 + rand(20000)
begin
-... | Fix fat-fingering of previous ephemeral port commit.
Remove debug code. | bloom-lang_bud | train | rb |
1ca6e6c41b0964e1c945b64582039137ec6d9a7c | diff --git a/html/pfappserver/root/static/admin/configuration/authentication.js b/html/pfappserver/root/static/admin/configuration/authentication.js
index <HASH>..<HASH> 100644
--- a/html/pfappserver/root/static/admin/configuration/authentication.js
+++ b/html/pfappserver/root/static/admin/configuration/authentication.... | Fix handling of new action in a auth source rule | inverse-inc_packetfence | train | js |
e6ceb4f2445c32d13681315b62214bb8dd428518 | diff --git a/Str.php b/Str.php
index <HASH>..<HASH> 100644
--- a/Str.php
+++ b/Str.php
@@ -360,20 +360,22 @@ class Str
*
* @param string $str The string over which to run the callable.
* @param callable $callable The callable to apply.
+ * @param string $encoding The ... | [Utils/Str] Added encoding option to Str::eachCharacter() | unyx_utils | train | php |
158fafc3e52a8bc4eb395927f8858639be55628f | diff --git a/flask_mqtt/__init__.py b/flask_mqtt/__init__.py
index <HASH>..<HASH> 100644
--- a/flask_mqtt/__init__.py
+++ b/flask_mqtt/__init__.py
@@ -147,9 +147,7 @@ class Mqtt():
if self.tls_insecure:
self.client.tls_insecure_set(self.tls_insecure)
- self.client.loop_start()
-
-... | MQTT: use connect_async (2) | stlehmann_Flask-MQTT | train | py |
4e4fa90b1804afce2ebc11f75d7e965548d5513c | diff --git a/webapps/ui/tasklist/client/scripts/tasklist/directives/cam-tasklist-tasks.js b/webapps/ui/tasklist/client/scripts/tasklist/directives/cam-tasklist-tasks.js
index <HASH>..<HASH> 100644
--- a/webapps/ui/tasklist/client/scripts/tasklist/directives/cam-tasklist-tasks.js
+++ b/webapps/ui/tasklist/client/scripts... | fix(cockpit): make task cleared only when filter changes
Related to. CAM-<I> | camunda_camunda-bpm-platform | train | js |
9b929eb6b36484b51095434d8a7a24a729a2876c | diff --git a/src/MetaModels/Filter/Setting/Simple.php b/src/MetaModels/Filter/Setting/Simple.php
index <HASH>..<HASH> 100644
--- a/src/MetaModels/Filter/Setting/Simple.php
+++ b/src/MetaModels/Filter/Setting/Simple.php
@@ -268,6 +268,8 @@ abstract class Simple implements ISimple
* @SuppressWarnings(PHPMD.UnusedFo... | Silence complexity warnings in simple filters | MetaModels_core | train | php |
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.