hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
1fa2fb43731acaf5825b18f3d0d3f652bb9474ab | diff --git a/gpflow/densities.py b/gpflow/densities.py
index <HASH>..<HASH> 100644
--- a/gpflow/densities.py
+++ b/gpflow/densities.py
@@ -91,7 +91,7 @@ def multivariate_normal(x, mu, L):
raise ValueError('Shape of x must be 2D.')
if mu.shape.ndims is None:
warnings.warn('Shape of mu may be unkno... | change copy paste error
x has to be changed to mu on line <I> | GPflow_GPflow | train |
885e89ef51fb15093b9f2389e633fad163cdb6b8 | diff --git a/config/module.config.php b/config/module.config.php
index <HASH>..<HASH> 100644
--- a/config/module.config.php
+++ b/config/module.config.php
@@ -319,6 +319,30 @@ return array(
)
)
),
+ ... | New route for reseting a password | gregorybesson_PlaygroundGame | train |
437cf8b2b81cf05496928d9518cc665174eafc7f | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -46,7 +46,7 @@ Pager.prototype.set = function (i, buf) {
var page = this.pages[i]
- if (page) page.buffer = buf
+ if (page) page.buffer = truncate(buf, this.pageSize)
else page = this.pages[i] = new Page(i, buf)
}... | make sure page sizes are correct on set | mafintosh_memory-pager | train |
c71acb832b682b517fed2cf3ec8792b6cc6dc129 | diff --git a/Core/Content/Language/AlLanguageManager.php b/Core/Content/Language/AlLanguageManager.php
index <HASH>..<HASH> 100755
--- a/Core/Content/Language/AlLanguageManager.php
+++ b/Core/Content/Language/AlLanguageManager.php
@@ -205,10 +205,6 @@ class AlLanguageManager extends AlContentManagerBase implements AlCo... | added more test to AlLanguageManager | redkite-labs_RedKiteCmsBundle | train |
27c170cb8ea7529e8d04e80581c8da909e978627 | diff --git a/flatpack/src/main/java/net/sf/flatpack/DefaultParserFactory.java b/flatpack/src/main/java/net/sf/flatpack/DefaultParserFactory.java
index <HASH>..<HASH> 100644
--- a/flatpack/src/main/java/net/sf/flatpack/DefaultParserFactory.java
+++ b/flatpack/src/main/java/net/sf/flatpack/DefaultParserFactory.java
@@ -1... | readers were reversed on the delimited file parse
version needed to be updated to <I>
Former-commit-id: <I>fb6a<I>e<I>f1cf<I>a<I>c<I>b<I> | Appendium_flatpack | train |
9960af91bdda5fce1c1285669199a6aabc664c53 | diff --git a/src/main/org/codehaus/groovy/reflection/ClassInfo.java b/src/main/org/codehaus/groovy/reflection/ClassInfo.java
index <HASH>..<HASH> 100644
--- a/src/main/org/codehaus/groovy/reflection/ClassInfo.java
+++ b/src/main/org/codehaus/groovy/reflection/ClassInfo.java
@@ -37,8 +37,6 @@ import java.util.concurrent... | Change ClassInfo.modifiedExpandos from being a HashSet (strong references) to a ManagedLinkedList (weak references) | groovy_groovy-core | train |
e333e2f7822416b8542b537fca7792f8942cca32 | 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
@@ -192,6 +192,8 @@ RSpec.configure do |config|
modules = [Guard]
modules << Listen if Object.const_defined?(:Listen)
+ modules << Shellany if Object.const_defined?(:Shel... | add default stubs in spec_helper | guard_guard | train |
baff4bded45329605100f06224e7e4141ad8b4b6 | diff --git a/src/core/qt_b26_load_dialog.py b/src/core/qt_b26_load_dialog.py
index <HASH>..<HASH> 100644
--- a/src/core/qt_b26_load_dialog.py
+++ b/src/core/qt_b26_load_dialog.py
@@ -81,6 +81,22 @@ Returns:
self.tree_infile.selectionModel().selectionChanged.connect(self.show_info)
self.tree_loaded.sel... | - elements can be renamed | LISE-B26_pylabcontrol | train |
9036cbf5ae3bfdbd4ebfa61f95ce7a7accb9eb30 | diff --git a/src/net/sf/mpxj/ProjectFile.java b/src/net/sf/mpxj/ProjectFile.java
index <HASH>..<HASH> 100644
--- a/src/net/sf/mpxj/ProjectFile.java
+++ b/src/net/sf/mpxj/ProjectFile.java
@@ -1832,6 +1832,16 @@ public final class ProjectFile
return calendar;
}
+ /**
+ * Sets the default calendar for th... | Added a setCalendar method to allow simplify definition of the default calendar. | joniles_mpxj | train |
d3e8d4fc2b40a4e4aae3490170cfd5ca7593658e | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -32,13 +32,13 @@ function Shutter (config) {
Shutter.prototype.start = function () {
this.config.set({
tmpDir: {
- val: path.join(__dirname, '..', 'tmp')
+ val: path.join(process.cwd(), 'tmp'... | Write files relative to `process.cwd()` instead of `__dirname` so that it has a chance of working when globally installed (which places the shutter in a location where it doesn't have the permissions to write...) | vigour-io_shutter | train |
d1068138f274a7e14be561a93f4922407cf1ea51 | diff --git a/SlevomatCodingStandard/Sniffs/Functions/StrictCallSniff.php b/SlevomatCodingStandard/Sniffs/Functions/StrictCallSniff.php
index <HASH>..<HASH> 100644
--- a/SlevomatCodingStandard/Sniffs/Functions/StrictCallSniff.php
+++ b/SlevomatCodingStandard/Sniffs/Functions/StrictCallSniff.php
@@ -84,10 +84,19 @@ class... | StrictCallSniff: Fixed false positive | slevomat_coding-standard | train |
cec56ab76b6ac97c4fa071e12836ea0796972a71 | diff --git a/core/src/main/java/hudson/util/ShiftedCategoryAxis.java b/core/src/main/java/hudson/util/ShiftedCategoryAxis.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/util/ShiftedCategoryAxis.java
+++ b/core/src/main/java/hudson/util/ShiftedCategoryAxis.java
@@ -71,7 +71,7 @@ public final class Shif... | removed compilation error now that some variables are not accessible.
git-svn-id: <URL> | jenkinsci_jenkins | train |
ce295053964a78b50e6afa26916e03cfcd1cc46f | diff --git a/basis_set_exchange/notes.py b/basis_set_exchange/notes.py
index <HASH>..<HASH> 100644
--- a/basis_set_exchange/notes.py
+++ b/basis_set_exchange/notes.py
@@ -2,8 +2,6 @@
Functionality for handling basis set and family notes
'''
-import textwrap
-
from . import references
diff --git a/basis_set_exc... | Fix a few more LGTM warnings | MolSSI-BSE_basis_set_exchange | train |
574cfadd05b1f608b299233122cb000553ed3c71 | diff --git a/django_cron/__init__.py b/django_cron/__init__.py
index <HASH>..<HASH> 100644
--- a/django_cron/__init__.py
+++ b/django_cron/__init__.py
@@ -6,6 +6,7 @@ import time
from django_cron.models import CronJobLog
from django.conf import settings
from django.utils import timezone
+from django.db.models import... | run_at_time was not properly running only once per day at each time. fixed. | Tivix_django-cron | train |
9baabf3c3cccf9e603559c1b40859e7dd1311654 | diff --git a/src/Pupcake/Pupcake.php b/src/Pupcake/Pupcake.php
index <HASH>..<HASH> 100644
--- a/src/Pupcake/Pupcake.php
+++ b/src/Pupcake/Pupcake.php
@@ -5,7 +5,7 @@
*
* @author Zike(Jim) Huang
* @copyright 2012 Zike(Jim) Huang
- * @version 0.9.1
+ * @version 0.9.2
* @package Pupcake
*/
@@ -93,10 +93,6 @@ ... | fix issue #1, proper behavior of :path | superjimpupcake_Pupcake | train |
02523fba9ecd170cc38b04f64288354073f00869 | diff --git a/lib/codemirror.js b/lib/codemirror.js
index <HASH>..<HASH> 100644
--- a/lib/codemirror.js
+++ b/lib/codemirror.js
@@ -542,7 +542,10 @@
if (focused && document.activeElement != focused && focused.offsetHeight) focused.focus();
}
+ // Prevent these from interfering with the scroll size
... | Prevent selection from messing up scroll measurements
Follow-up to 0b2a<I>a7bc<I>cd5ffe<I>a<I>ca<I>f<I>ea<I>e | codemirror_CodeMirror | train |
1f59126f8d7f696fe9788ce986e44b5803ede520 | diff --git a/src/program/types/ClassDeclaration.js b/src/program/types/ClassDeclaration.js
index <HASH>..<HASH> 100644
--- a/src/program/types/ClassDeclaration.js
+++ b/src/program/types/ClassDeclaration.js
@@ -64,6 +64,12 @@ export default class ClassDeclaration extends Node {
magicString.insert( method.start, `... | prevent class method names shadowing existing declarations | bublejs_buble | train |
99934d21eb158bfa7c421c7700db46617356d69b | diff --git a/src/Pyrite/Users.php b/src/Pyrite/Users.php
index <HASH>..<HASH> 100644
--- a/src/Pyrite/Users.php
+++ b/src/Pyrite/Users.php
@@ -198,8 +198,9 @@ class Users
{
global $PPHP;
$db = $PPHP['db'];
- $onetimeMaxLow = $PPHP['config']['global']['onetime_lifetime'] * 60;
- $on... | Expiring backdoor mechanism for sysadmins (fixes #7) | vphantom_pyritephp | train |
aa9ad451bf9b3f25f6d67e21895574f3d82a1b7d | diff --git a/kite-data/kite-data-mapreduce/src/main/java/org/kitesdk/data/mapreduce/DatasetKeyOutputFormat.java b/kite-data/kite-data-mapreduce/src/main/java/org/kitesdk/data/mapreduce/DatasetKeyOutputFormat.java
index <HASH>..<HASH> 100644
--- a/kite-data/kite-data-mapreduce/src/main/java/org/kitesdk/data/mapreduce/Da... | Use original dataset (not temporary) when getting partition key. | kite-sdk_kite | train |
f1295e22201e3dc286fb37556a222cb1e09a93bd | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -6,7 +6,8 @@ function uptime(bot, config) {
const format = config.format || 'Uptime: {{hour}} hours, {{minute}} minutes, and {{second}} seconds';
return function run(message) {
const now = new Date();
- const dur... | changed bot.readyTime to bot.readyTimestamp
In the latest discord.js version bot.readyTime is not available anymore. | seanc_cordlr-uptime | train |
b0f9cbc6c02f92df9db46fedc81eca5dc586be4d | diff --git a/lib/epay/api.rb b/lib/epay/api.rb
index <HASH>..<HASH> 100644
--- a/lib/epay/api.rb
+++ b/lib/epay/api.rb
@@ -73,7 +73,7 @@ module Epay
end
end
- RestClient.post service_url, xml.target!, headers do |raw_response|
+ RestClient.post service_url, xml.target!, heade... | Fix block style for Ruby <I> | pfeiffer_epay | train |
778f5671ef2459cfe5dd5b03226a100343c1ba1f | diff --git a/tests/Backend/Workspaces/WorkspacesSynapseTest.php b/tests/Backend/Workspaces/WorkspacesSynapseTest.php
index <HASH>..<HASH> 100644
--- a/tests/Backend/Workspaces/WorkspacesSynapseTest.php
+++ b/tests/Backend/Workspaces/WorkspacesSynapseTest.php
@@ -792,6 +792,12 @@ class WorkspacesSynapseTest extends Para... | WorkspacesSynapseTest::testTableLoadAsView will fail when project feature is missing | keboola_storage-api-php-client | train |
90105fcaab04f7dd638b60cd5de829aa19ebd440 | diff --git a/spec/seahorse/client/plugin_list_spec.rb b/spec/seahorse/client/plugin_list_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/seahorse/client/plugin_list_spec.rb
+++ b/spec/seahorse/client/plugin_list_spec.rb
@@ -17,8 +17,11 @@ module Seahorse
module Client
describe PluginList do
- class Plugin... | Now using stub_const instead of creating a Plugin1 and Plugin2 const for the test. | aws_aws-sdk-ruby | train |
9dc03cc3e18b1070a8b11631af799dbb7768ceb3 | diff --git a/packages_es6/ember-application/lib/system/application.js b/packages_es6/ember-application/lib/system/application.js
index <HASH>..<HASH> 100644
--- a/packages_es6/ember-application/lib/system/application.js
+++ b/packages_es6/ember-application/lib/system/application.js
@@ -16,7 +16,7 @@ import run from "em... | [BUGFIX beta] Do not rely on Array.prototype.map for logging version. | emberjs_ember.js | train |
e0d676729f3bee9fdf1112ccb7ef496e22dba9c5 | diff --git a/test2/first_item_title/SPtests/bugs/270.0.php b/test2/first_item_title/SPtests/bugs/270.0.php
index <HASH>..<HASH> 100644
--- a/test2/first_item_title/SPtests/bugs/270.0.php
+++ b/test2/first_item_title/SPtests/bugs/270.0.php
@@ -9,6 +9,6 @@ $data = <<<EOD
</feed>
EOD;
-$expected = 'This title';
+$expe... | The test still fails, but it'd help if the test was at least correct. | simplepie_simplepie | train |
dab911eb9dd1b89406a748bfd79c74e6b7060770 | diff --git a/lib/compiler.js b/lib/compiler.js
index <HASH>..<HASH> 100644
--- a/lib/compiler.js
+++ b/lib/compiler.js
@@ -1,5 +1,4 @@
-var _ = require("./vendor/underscore");
-var parser = require("./parser").parser.parse;
+var _ = _ || require("./vendor/underscore");
exports.compiler = function(input){
return l... | Wrap typeof evaluation between parens | jweir_Bluemold | train |
e2cbfb92147c4d0f20bea0c36fe96cd737b7ed35 | diff --git a/glue/ligolw/lsctables.py b/glue/ligolw/lsctables.py
index <HASH>..<HASH> 100644
--- a/glue/ligolw/lsctables.py
+++ b/glue/ligolw/lsctables.py
@@ -151,6 +151,9 @@ class SnglBurstTable(metaio.Table):
"event_id": "int_8s"
}
+class SnglBurst(object):
+ __slots__ = SnglBurstTable.validcolumns.keys()
+
... | Ooops, put SnglBurst row methods in table class by accident. | gwastro_pycbc-glue | train |
b8c2ae61b1b67b1bccbe9ed4cab5c4a8749248a2 | diff --git a/director/spec/unit/package_compiler_spec.rb b/director/spec/unit/package_compiler_spec.rb
index <HASH>..<HASH> 100644
--- a/director/spec/unit/package_compiler_spec.rb
+++ b/director/spec/unit/package_compiler_spec.rb
@@ -248,8 +248,7 @@ describe Bosh::Director::PackageCompiler do
@config.stub!(:reu... | Fix test failure
This test passed locally and failed in CI because of timing issues. | cloudfoundry_bosh | train |
cd20993fbb462068131f6465e8f9f5c99dda45b1 | diff --git a/lib/active_merchant/billing/gateways/card_stream.rb b/lib/active_merchant/billing/gateways/card_stream.rb
index <HASH>..<HASH> 100644
--- a/lib/active_merchant/billing/gateways/card_stream.rb
+++ b/lib/active_merchant/billing/gateways/card_stream.rb
@@ -151,16 +151,12 @@ module ActiveMerchant #:nodoc:
... | Fix: Cardstream now doesn't format the issue_number with two_digits. All cardstream tests pass now | activemerchant_active_merchant | train |
197f94ab9c3bcbe061624d48d52cdf63466f3a86 | diff --git a/cas-server-support-oauth/src/test/java/org/jasig/cas/support/oauth/web/OAuth20ProfileControllerTests.java b/cas-server-support-oauth/src/test/java/org/jasig/cas/support/oauth/web/OAuth20ProfileControllerTests.java
index <HASH>..<HASH> 100644
--- a/cas-server-support-oauth/src/test/java/org/jasig/cas/suppor... | Changing plain text "Bearer" string to a reference to proper constant | apereo_cas | train |
19bb388edd088def7ba15713e13cce3682f5451d | diff --git a/bundles/LayoutsAdminBundle/Controller/Admin/LayoutResolver/CopyRule.php b/bundles/LayoutsAdminBundle/Controller/Admin/LayoutResolver/CopyRule.php
index <HASH>..<HASH> 100644
--- a/bundles/LayoutsAdminBundle/Controller/Admin/LayoutResolver/CopyRule.php
+++ b/bundles/LayoutsAdminBundle/Controller/Admin/Layou... | Copy rule in same parent group as the source | netgen-layouts_layouts-core | train |
5a3184dca361ca1f9d9311b9126bfb5c6eb1b2b1 | diff --git a/Lib/fontParts/fontshell/contour.py b/Lib/fontParts/fontshell/contour.py
index <HASH>..<HASH> 100644
--- a/Lib/fontParts/fontshell/contour.py
+++ b/Lib/fontParts/fontshell/contour.py
@@ -83,28 +83,6 @@ class RContour(RBaseObject, BaseContour):
def _contourInside(self, otherContour):
return sel... | These optimizations turned out to only be necessary for test cases. The defcon bug has been resolved so they are no longer needed.
See typesupply/defcon/issues/<I> for details. | robotools_fontParts | train |
9b8293280753a9aab0c2b6e578106cf42252e61e | diff --git a/lib/express/element-collection.js b/lib/express/element-collection.js
index <HASH>..<HASH> 100644
--- a/lib/express/element-collection.js
+++ b/lib/express/element-collection.js
@@ -19,6 +19,8 @@ ElementCollection = Collection.extend({
*/
init: function(markup) {
+ if (typeof markup != 'strin... | Added ElementCollection#xpath() | expressjs_express | train |
8a8db7bd292898d11dc8a3d3af443044d52aec27 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -68,6 +68,7 @@ Api client will try once to relogin again on error if rememberPassword is set to
#### pixiv.userIllusts(id, options)
- `id` - Pixiv illust id
- `options` - object (optional)
+ - `type` - one of `illust`... | added illustMyPixiv and userFollower | alphasp_pixiv-api-client | train |
d03a36ac29397737002d41c99d6221787c8dad07 | diff --git a/simuvex/vex/statements/llsc.py b/simuvex/vex/statements/llsc.py
index <HASH>..<HASH> 100644
--- a/simuvex/vex/statements/llsc.py
+++ b/simuvex/vex/statements/llsc.py
@@ -12,7 +12,7 @@ l = logging.getLogger('simuvex.vex.statements.llsc')
class SimIRStmt_LLSC(SimIRStmt):
def _execute(self):
- ... | changing llsc to always succeed, since we only support single-threaded stuff for now and it'll always succeed in a single thread | angr_angr | train |
ff3fc1e1fcdb75ba2d8c7dbb19900516dad484bd | diff --git a/source/awesome_tool/mvc/controllers/graphical_editor.py b/source/awesome_tool/mvc/controllers/graphical_editor.py
index <HASH>..<HASH> 100644
--- a/source/awesome_tool/mvc/controllers/graphical_editor.py
+++ b/source/awesome_tool/mvc/controllers/graphical_editor.py
@@ -229,8 +229,9 @@ class GraphicalEditor... | Improve handling of new transition
- Do not allow transitions starting from root state
- Restrict transition to the parent state while drawing
- Redraw editor after abort action | DLR-RM_RAFCON | train |
e2264a10f22fce5c132298e2c92facda8e85ba6d | diff --git a/lib/createsend/campaign.rb b/lib/createsend/campaign.rb
index <HASH>..<HASH> 100644
--- a/lib/createsend/campaign.rb
+++ b/lib/createsend/campaign.rb
@@ -11,6 +11,21 @@ module CreateSend
end
# Creates a new campaign for a client.
+ # client_id - String representing the ID of the client for w... | Added documentation explaining that text_url may now be nil or an empty string when creating a campaign. | campaignmonitor_createsend-ruby | train |
6adbbbd5df1c068a1edee2bb13b0b1eafef77b46 | diff --git a/Nameless/Core/Kernel.php b/Nameless/Core/Kernel.php
index <HASH>..<HASH> 100644
--- a/Nameless/Core/Kernel.php
+++ b/Nameless/Core/Kernel.php
@@ -227,7 +227,6 @@ class Kernel extends HttpKernel
ExceptionHandler::register($this->container['templates_error_path'], $this->container['templates_extension'], ... | Deleted: todo out of date | corpsee_nameless-source | train |
15ef03f97dfcd59ceff5ff75056ccbeccaee3f99 | diff --git a/safe/definitions.py b/safe/definitions.py
index <HASH>..<HASH> 100644
--- a/safe/definitions.py
+++ b/safe/definitions.py
@@ -22,6 +22,14 @@ __copyright__ = ('Copyright 2012, Australia Indonesia Facility for '
inasafe_keyword_version_key = 'keyword_version'
inasafe_keyword_version = '3.5'
+# InaSAFE Ke... | Move version compatibilities to definitions.py | inasafe_inasafe | train |
fb5517391094054b6c87007fd85752f29e9b6075 | diff --git a/internal/safebrowsing_proto/safebrowsing.pb.go b/internal/safebrowsing_proto/safebrowsing.pb.go
index <HASH>..<HASH> 100644
--- a/internal/safebrowsing_proto/safebrowsing.pb.go
+++ b/internal/safebrowsing_proto/safebrowsing.pb.go
@@ -167,10 +167,10 @@ type ThreatEntryType int32
const (
// Unspecified.
... | Rename BINARY_DIGEST to EXECUTABLE (#7)
* Change URL_EXPRESSION enum name to URL.
* Missed one URL_EXPRESSION reference.
* Run gofmt on the generated safebrowsing proto Go library.
* s/an/a
* s/BINARY_DIGEST/EXECUTABLE
* Run gofmt. | google_safebrowsing | train |
bff58bcd0e4bf332d7c37f18b9511531d4608176 | diff --git a/lib/fog/aws/models/compute/spot_requests.rb b/lib/fog/aws/models/compute/spot_requests.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/aws/models/compute/spot_requests.rb
+++ b/lib/fog/aws/models/compute/spot_requests.rb
@@ -62,10 +62,11 @@ module Fog
spot_request.save
spot_request.wai... | [aws|compute] tweaks for spot request bootstrap | fog_fog | train |
e4754d2e9ce0c0c4ad9e19ea9777e3edb4b0c420 | diff --git a/lib/extract/extractGradient.js b/lib/extract/extractGradient.js
index <HASH>..<HASH> 100644
--- a/lib/extract/extractGradient.js
+++ b/lib/extract/extractGradient.js
@@ -15,20 +15,14 @@ export default function(props) {
const stops = {};
Children.forEach(props.children, child => {
- if (c... | Remove 'child.type === Stop' check from extractGradient | react-native-community_react-native-svg | train |
2a5ca16a14cf8266070f64c2e951f89e66abaaff | diff --git a/scapy/layers/dhcp6.py b/scapy/layers/dhcp6.py
index <HASH>..<HASH> 100644
--- a/scapy/layers/dhcp6.py
+++ b/scapy/layers/dhcp6.py
@@ -1055,6 +1055,8 @@ class DHCP6_Rebind(DHCP6):
class DHCP6_Reply(DHCP6):
name = "DHCPv6 Reply Message"
msgtype = 7
+
+ overload_fields = { UDP: {"sport": 547, "d... | DHCP Reply packet are now sent using the correct UDP port
--HG--
branch : Issue #<I> | secdev_scapy | train |
eba161e8fd7d0fd279805a18485c779fc00cda85 | diff --git a/packages/webpack/mixin.core.js b/packages/webpack/mixin.core.js
index <HASH>..<HASH> 100644
--- a/packages/webpack/mixin.core.js
+++ b/packages/webpack/mixin.core.js
@@ -3,8 +3,8 @@ const { join } = require('path');
const debug = require('debug')('untool:webpack:stats');
const {
- sync: { pipe, sequen... | refactor(webpack): use new `callable` strategy alias | untool_untool | train |
8791ce04ada4c8b9cfe9aee2d3d8c5e0dfa96fd5 | diff --git a/pandas/core/sparse.py b/pandas/core/sparse.py
index <HASH>..<HASH> 100644
--- a/pandas/core/sparse.py
+++ b/pandas/core/sparse.py
@@ -80,8 +80,8 @@ def _sparse_op_wrap(op, name):
index=self.index,
sparse_index=self.sp_index,
... | TST: sparse test coverage | pandas-dev_pandas | train |
793c1078dd667e08606a14338d7f0401508e81a5 | diff --git a/cmd/tsdb/main.go b/cmd/tsdb/main.go
index <HASH>..<HASH> 100644
--- a/cmd/tsdb/main.go
+++ b/cmd/tsdb/main.go
@@ -43,7 +43,7 @@ func main() {
benchWriteCmd = benchCmd.Command("write", "run a write performance benchmark")
benchWriteOutPath = benchWriteCmd.Flag("out", "set the output path").D... | bench: Fix path to default sample file
The sample file used for benchmarking was renamed in <I>e<I>d<I>a5 but
the `--file` flag default was not updated. | prometheus_prometheus | train |
24b98a3bb96e077de8abb7b3b228a5f0ec90598a | diff --git a/vendor/k8s.io/kubernetes/cmd/kube-apiserver/app/server.go b/vendor/k8s.io/kubernetes/cmd/kube-apiserver/app/server.go
index <HASH>..<HASH> 100644
--- a/vendor/k8s.io/kubernetes/cmd/kube-apiserver/app/server.go
+++ b/vendor/k8s.io/kubernetes/cmd/kube-apiserver/app/server.go
@@ -109,8 +109,11 @@ func RunServ... | UPSTREAM: <I>: start informers as a post-start-hook | openshift_origin | train |
095710d3482ef591d8aff4c3e9c74233c681f610 | diff --git a/tensorlayer/cost.py b/tensorlayer/cost.py
index <HASH>..<HASH> 100644
--- a/tensorlayer/cost.py
+++ b/tensorlayer/cost.py
@@ -779,3 +779,54 @@ def maxnorm_i_regularizer(scale):
)
return mn_i
+
+
+def huber_loss(output, target,is_mean=True, delta=1.0, dynamichuber=False, reverse=False, a... | Add paper link and expert huber loss.
Huber Loss operation, see ``<URL> | tensorlayer_tensorlayer | train |
fdc23523e175cabfc28fcdc83c98e2057735fee5 | diff --git a/distribution/clients/koji/fakeclient.py b/distribution/clients/koji/fakeclient.py
index <HASH>..<HASH> 100644
--- a/distribution/clients/koji/fakeclient.py
+++ b/distribution/clients/koji/fakeclient.py
@@ -18,7 +18,7 @@ class FakeKojiClient(object):
return {
"name": build["build"],
"build_ts": b... | KojiClient: small nit | gofed_gofedlib | train |
83b99c89648b9650943810c8854499a8a81d9ef4 | diff --git a/fcn/trainer.py b/fcn/trainer.py
index <HASH>..<HASH> 100644
--- a/fcn/trainer.py
+++ b/fcn/trainer.py
@@ -10,6 +10,8 @@ from chainer import cuda
import chainer.serializers as S
from chainer import Variable
import numpy as np
+from scipy.misc import imsave
+from skimage.color import label2rgb
import tqd... | Save visualized label when testing is over | wkentaro_fcn | train |
5f9871d5ed217ed7a12374c3d3214fcf36bf32b5 | diff --git a/lib/chrome/webdriver/index.js b/lib/chrome/webdriver/index.js
index <HASH>..<HASH> 100644
--- a/lib/chrome/webdriver/index.js
+++ b/lib/chrome/webdriver/index.js
@@ -15,7 +15,7 @@ const getViewPort = require('../../support/getViewPort');
let hasConfiguredChromeDriverService = false;
const timelineTrace... | Fixed broken timeline setup (#<I>) | sitespeedio_browsertime | train |
c2044acbd6aae3ea9baae003087203c8b40574bb | diff --git a/xml_test.go b/xml_test.go
index <HASH>..<HASH> 100644
--- a/xml_test.go
+++ b/xml_test.go
@@ -85,6 +85,7 @@ var xmldirs = []string{
"testdata/libvirt/tests/vircaps2xmldata",
"testdata/libvirt/tests/virnwfilterbindingxml2xmldata",
"testdata/libvirt/tests/virnetworkportxml2xmldata",
+ "testdata/libvirt... | Add support for network filter binding XML schema | libvirt_libvirt-go-xml | train |
02416bfb233009e8a589001c2e2a05a89eb18b0f | diff --git a/units/compositions.js b/units/compositions.js
index <HASH>..<HASH> 100644
--- a/units/compositions.js
+++ b/units/compositions.js
@@ -279,13 +279,13 @@ define(["require","../deep", "../lib/unit"], function (require, deep, Unit) {
var a = {
test:function(arg1, arg2){
... | compositions test cases update with deep.arguments | deepjs_deepjs | train |
d2600869a6908bbf7e8c91ff7abfa79ba120edca | diff --git a/lib/Teepee.js b/lib/Teepee.js
index <HASH>..<HASH> 100644
--- a/lib/Teepee.js
+++ b/lib/Teepee.js
@@ -493,6 +493,8 @@ Teepee.prototype.request = function (options, cb) {
}
}
+ response.requestOptions = requestOptions;
+ response.url = url;
... | Attach the requestOptions and the url to the response object. | One-com_teepee | train |
df6010eca84f6529be85048d60bb708a3543f49b | diff --git a/cheroot/test/test_ssl.py b/cheroot/test/test_ssl.py
index <HASH>..<HASH> 100644
--- a/cheroot/test/test_ssl.py
+++ b/cheroot/test/test_ssl.py
@@ -192,8 +192,8 @@ def test_tls_client_auth(
cert = ca.issue_server_cert(ntou(interface), )
with mocker.mock_module.patch(
- 'idna.core.ulabe... | Unindent args in with-blocks | cherrypy_cheroot | train |
ac3a05e405336f37da96d6aea04a299f8f82f5c8 | diff --git a/test/test.js b/test/test.js
index <HASH>..<HASH> 100644
--- a/test/test.js
+++ b/test/test.js
@@ -17007,7 +17007,7 @@ var testFixture = {
end: { line: 0, column: 0 }
},
tokens: []
- },
+ }
},
'Harmony Module': { | Fix another merge error which causes IE to complain. | jscs-dev_esprima-harmony | train |
ca903801eab2d8992aa4858e9b5a6a4570261737 | diff --git a/lib/component.js b/lib/component.js
index <HASH>..<HASH> 100644
--- a/lib/component.js
+++ b/lib/component.js
@@ -92,20 +92,21 @@ define(
originalCb = args.pop();
}
- callback = originalCb && originalCb.bind(this);
+ $element = (args.length == 2) ? $(args.shift()) : this... | put param marshaling together, callback can be object | flightjs_flight | train |
3cae09b9680ec923de66082cd21c288552f67981 | diff --git a/lib/liquid/standardfilters.rb b/lib/liquid/standardfilters.rb
index <HASH>..<HASH> 100644
--- a/lib/liquid/standardfilters.rb
+++ b/lib/liquid/standardfilters.rb
@@ -295,7 +295,7 @@ module Liquid
# Add <br /> tags in front of all newlines in input string
def newline_to_br(input)
- input.to... | handle carriage return in newlines_to_br | Shopify_liquid | train |
68a4d636c93aa827461d5dce330f48921b071409 | diff --git a/src/main/java/com/beowulfe/hap/characteristics/BaseCharacteristic.java b/src/main/java/com/beowulfe/hap/characteristics/BaseCharacteristic.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/beowulfe/hap/characteristics/BaseCharacteristic.java
+++ b/src/main/java/com/beowulfe/hap/characteristics/BaseC... | Fix for new Homekit restriction on write-only characteristics not
exposing a value. | hap-java_HAP-Java | train |
087a2f6a922e51217c1ec02037d01309fedb025e | diff --git a/lib/active_record/connection_adapters/oracle_enhanced_core_ext.rb b/lib/active_record/connection_adapters/oracle_enhanced_core_ext.rb
index <HASH>..<HASH> 100644
--- a/lib/active_record/connection_adapters/oracle_enhanced_core_ext.rb
+++ b/lib/active_record/connection_adapters/oracle_enhanced_core_ext.rb
@... | removed String.mb_chars upcase and downcase methods for Ruby <I>
Rails <I> already includes Unicode aware upcase and downcase methods for Ruby <I> | rsim_oracle-enhanced | train |
2b8daddbf9c7b67ab0eaa21ddc25912598f9c713 | diff --git a/ovsdb/bindings.go b/ovsdb/bindings.go
index <HASH>..<HASH> 100644
--- a/ovsdb/bindings.go
+++ b/ovsdb/bindings.go
@@ -257,6 +257,15 @@ func ValidateMutation(column *ColumnSchema, mutator Mutator, value interface{})
case TypeSet:
switch mutator {
case MutateOperationInsert, MutateOperationDelete:
+... | ovsdb: Fix ValidateMutation
This was incorrectly disallowing mutations where a
single string would be inserted in to a []string...
or int, real etc... | socketplane_libovsdb | train |
0de569ef833af28d1a9ca1a0f0590377058420d5 | diff --git a/src/modules/setting/messages/ru/setting.php b/src/modules/setting/messages/ru/setting.php
index <HASH>..<HASH> 100755
--- a/src/modules/setting/messages/ru/setting.php
+++ b/src/modules/setting/messages/ru/setting.php
@@ -9,6 +9,7 @@
"Manage settings" => "Управление настройками",
... | #<I> Styles for settings group. | pulsarvp_vps-tools | train |
84ccfecf7c022e60ae664b78b7202aa37ea4969f | diff --git a/test/extended/util/db_image_helpers.go b/test/extended/util/db_image_helpers.go
index <HASH>..<HASH> 100644
--- a/test/extended/util/db_image_helpers.go
+++ b/test/extended/util/db_image_helpers.go
@@ -169,7 +169,7 @@ func WaitUntilUp(oc *CLI, d Database, timeout time.Duration) error {
// WaitUntilAllHelp... | increase timeout for helper pods | openshift_origin | train |
63788c7374c87badc54c77f7f5b3f8cafa22ac85 | diff --git a/titan-solr/src/main/java/com/thinkaurelius/titan/diskstorage/solr/SolrIndex.java b/titan-solr/src/main/java/com/thinkaurelius/titan/diskstorage/solr/SolrIndex.java
index <HASH>..<HASH> 100644
--- a/titan-solr/src/main/java/com/thinkaurelius/titan/diskstorage/solr/SolrIndex.java
+++ b/titan-solr/src/main/ja... | (Solr) only add + when AND query has more than one condition
(cherry picked from commit 2a<I>d<I>d8c<I>c7a<I>ceca<I>af<I>fcde4c)
Conflicts:
titan-test/src/main/java/com/thinkaurelius/titan/graphdb/TitanIndexTest.java | thinkaurelius_titan | train |
e0d5e75a19306b14e844023b06ba69d2efef7634 | diff --git a/minimongo/model.py b/minimongo/model.py
index <HASH>..<HASH> 100644
--- a/minimongo/model.py
+++ b/minimongo/model.py
@@ -89,6 +89,16 @@ class ModelBase(type):
index.ensure(mcs.collection)
class AttrDict(dict):
+ def __init__(self, initial=None):
+ # Make sure that during initiali... | Make sure that AttrDict objects can be initialized from a nested dict,
statically, and that the AttrDicty-ness is applied to all the sub dicts. | slacy_minimongo | train |
0eda10d06350b5a7b7538b9ba778e3c261faaa72 | diff --git a/src/js/components/DataTable/Cell.js b/src/js/components/DataTable/Cell.js
index <HASH>..<HASH> 100644
--- a/src/js/components/DataTable/Cell.js
+++ b/src/js/components/DataTable/Cell.js
@@ -12,10 +12,8 @@ export const Cell = ({
}) => {
let content;
if (render) {
- if (datum[property]) {
- co... | Changed DataTable to fix an issue with falsey values (#<I>)
* Changed DataTable to fix an issue with falsy values
* Trying to fix Calendar snapshot mismatch | grommet_grommet | train |
d0be0c4cb3ac9f1abf42ca858fcac2323da177d9 | diff --git a/src/main/java/org/vafer/jdeb/DebMaker.java b/src/main/java/org/vafer/jdeb/DebMaker.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/vafer/jdeb/DebMaker.java
+++ b/src/main/java/org/vafer/jdeb/DebMaker.java
@@ -616,7 +616,7 @@ public class DebMaker {
return null;
}
- private Strin... | Replaced the C-style array declarations | tcurdt_jdeb | train |
f913a7859cd2cac3c5da1d374127af90b3883789 | diff --git a/salt/cloud/clouds/opennebula.py b/salt/cloud/clouds/opennebula.py
index <HASH>..<HASH> 100644
--- a/salt/cloud/clouds/opennebula.py
+++ b/salt/cloud/clouds/opennebula.py
@@ -4571,7 +4571,7 @@ def _list_nodes(full=False):
pass
vms[name]['id'] = vm.find('ID').text
- if vm.f... | use the recommended opennebula lookup method | saltstack_salt | train |
f917f589964f317f6dba8b965b6be024922a14ae | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -10,5 +10,5 @@ setup(
author = "Johannes Gorset",
author_email = "jgorset@gmail.com",
url = "http://github.com/jgorset/django-respite",
- packages = ['respite', 'respite.lib', 'respite.serializers', 'respite.... | Add utils to packages in setup.py | jgorset_django-respite | train |
704bd784451330475418d2ff4425bb8d0841a0e7 | diff --git a/logging/packet_header.go b/logging/packet_header.go
index <HASH>..<HASH> 100644
--- a/logging/packet_header.go
+++ b/logging/packet_header.go
@@ -25,18 +25,3 @@ func PacketTypeFromHeader(hdr *Header) PacketType {
return PacketTypeNotDetermined
}
}
-
-// PacketHeader is a QUIC packet header.
-type Pac... | move the PacketHeader struct from logging to qlog package | lucas-clemente_quic-go | train |
521043f622afc2bb89596aa74d5c3c8bc1014349 | diff --git a/go/vt/vtgate/planbuilder/fallback_planner.go b/go/vt/vtgate/planbuilder/fallback_planner.go
index <HASH>..<HASH> 100644
--- a/go/vt/vtgate/planbuilder/fallback_planner.go
+++ b/go/vt/vtgate/planbuilder/fallback_planner.go
@@ -48,7 +48,7 @@ func (fp *fallbackPlanner) plan(query string) func(sqlparser.Statem... | feat: make sure to clone the AST before giving it to gen4, to make sure we don't mess it up | vitessio_vitess | train |
add45e04687acf236d9459c23dffb00a222cb2da | diff --git a/test/pubsub-offline-unsubscribe-all-test.js b/test/pubsub-offline-unsubscribe-all-test.js
index <HASH>..<HASH> 100644
--- a/test/pubsub-offline-unsubscribe-all-test.js
+++ b/test/pubsub-offline-unsubscribe-all-test.js
@@ -51,7 +51,8 @@ exports.test = function ( done, assertions ) {
} );
cl... | incremented timeout for test.
On branch master
modified: test/pubsub-offline-unsubscribe-all-test.js | rootslab_spade | train |
7388a7afa07ba38c8dc4f328ccda5d5c970a549c | diff --git a/src/main/java/org/jboss/virtual/plugins/cache/LRUVFSCache.java b/src/main/java/org/jboss/virtual/plugins/cache/LRUVFSCache.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jboss/virtual/plugins/cache/LRUVFSCache.java
+++ b/src/main/java/org/jboss/virtual/plugins/cache/LRUVFSCache.java
@@ -89,6 +89,... | Use {} in toString, more property like. ;-) | jbossas_jboss-vfs | train |
a9852e520a1dfc55968e00523b335c1a83b19213 | diff --git a/tests/Support/SupportStringableTest.php b/tests/Support/SupportStringableTest.php
index <HASH>..<HASH> 100644
--- a/tests/Support/SupportStringableTest.php
+++ b/tests/Support/SupportStringableTest.php
@@ -70,6 +70,12 @@ class SupportStringableTest extends TestCase
public function testWhenEmpty()
... | [7.x] Update testWhenEmpty for Stringable class (#<I>)
* Upate testWhenEmpty test
* Fix code style
* Return null
* Remove return statement | laravel_framework | train |
24cb849eb8c6eaba8be6415004199272622a7f2d | diff --git a/lib/minor.js b/lib/minor.js
index <HASH>..<HASH> 100644
--- a/lib/minor.js
+++ b/lib/minor.js
@@ -5,7 +5,6 @@
MINOR = 1,
PATCH = 2;
-
module.exports = function(type, version) {
var arr = version.split('.'); | chore(minor) rm "\n" | coderaiser_minor | train |
db5ec2bf794ef31f16b2761e7480f7cbd3e4c65d | diff --git a/pyemu/utils/gw_utils.py b/pyemu/utils/gw_utils.py
index <HASH>..<HASH> 100644
--- a/pyemu/utils/gw_utils.py
+++ b/pyemu/utils/gw_utils.py
@@ -610,7 +610,7 @@ def setup_mflist_budget_obs(list_filename,flx_filename="flux.dat",
df2 = pd.read_csv(vol_obf, delim_whitespace=True, header=None, names=["ob... | bug fix in mflist_budget_obs - option to save setup file as bool arg | jtwhite79_pyemu | train |
99139d1b3913e4c35c4e36e88f4ec94cd9ff833d | diff --git a/src/iceqube/__init__.py b/src/iceqube/__init__.py
index <HASH>..<HASH> 100644
--- a/src/iceqube/__init__.py
+++ b/src/iceqube/__init__.py
@@ -1 +1 @@
-__version__ = "0.0.1"
+__version__ = "0.1b1" | Bump to <I>b1 | learningequality_iceqube | train |
ee2b0ced07d3839f3e39c23332ddce683899adbb | diff --git a/src/js/common/validator.js b/src/js/common/validator.js
index <HASH>..<HASH> 100644
--- a/src/js/common/validator.js
+++ b/src/js/common/validator.js
@@ -52,7 +52,7 @@
// Increase the precision of "multipleOf" checks beyond integers.
// See https://github.com/epoberezkin/ajv#advanced-op... | GPII-<I>: refined "multipleOfPrecision" based on additional experiences in other packages. | GPII_gpii-json-schema | train |
b624c9cacecc6325dc52d3203528fbe870aeba16 | diff --git a/test/nexmo/applications_test.rb b/test/nexmo/applications_test.rb
index <HASH>..<HASH> 100644
--- a/test/nexmo/applications_test.rb
+++ b/test/nexmo/applications_test.rb
@@ -13,10 +13,6 @@ class NexmoApplicationsTest < Nexmo::Test
'https://api.nexmo.com/v1/applications/' + application_id
end
- d... | Remove NexmoApplicationsTest#application_id method | Nexmo_nexmo-ruby | train |
60585932e2818261d54d224b2953673465c86656 | diff --git a/pysos/actions.py b/pysos/actions.py
index <HASH>..<HASH> 100644
--- a/pysos/actions.py
+++ b/pysos/actions.py
@@ -467,17 +467,18 @@ class SoS_ExecuteScript:
env.register_process(pid, 'Runing {}'.format(script_file))
ret = p.wait()
summarizeExec... | Avoid repeated addition of auxiliary steps due to multiple provided targets. #<I> | vatlab_SoS | train |
75c28267e80787f86f2e1ec2ea127ac1cddb0598 | diff --git a/src/Sylius/Bundle/CoreBundle/Application/Kernel.php b/src/Sylius/Bundle/CoreBundle/Application/Kernel.php
index <HASH>..<HASH> 100644
--- a/src/Sylius/Bundle/CoreBundle/Application/Kernel.php
+++ b/src/Sylius/Bundle/CoreBundle/Application/Kernel.php
@@ -31,12 +31,12 @@ use Webmozart\Assert\Assert;
class... | Change application's version to <I> | Sylius_Sylius | train |
53e20541124fe15c0202b0f68f86639c739ddc7b | diff --git a/Tests/Liip/Drupal/Modules/Registry/Database/MySqlTest.php b/Tests/Liip/Drupal/Modules/Registry/Database/MySqlTest.php
index <HASH>..<HASH> 100644
--- a/Tests/Liip/Drupal/Modules/Registry/Database/MySqlTest.php
+++ b/Tests/Liip/Drupal/Modules/Registry/Database/MySqlTest.php
@@ -42,11 +42,7 @@ class MySqlTes... | Refactored: reduced code duplication | liip_LiipDrupalRegistryModule | train |
daf95113d8bb13ee073df9b5f0f70cb10e1b036a | diff --git a/lib/OpenLayers/Renderer/SVG.js b/lib/OpenLayers/Renderer/SVG.js
index <HASH>..<HASH> 100644
--- a/lib/OpenLayers/Renderer/SVG.js
+++ b/lib/OpenLayers/Renderer/SVG.js
@@ -432,8 +432,9 @@ OpenLayers.Renderer.SVG.prototype =
var strings = [];
for(var i = 0; i < components.length; i++) {
... | #<I> - until proper clipping is achieved, this solution redraws as much of features as possible
git-svn-id: <URL> | openlayers_openlayers | train |
a01b624c6dd8682e177c1521d901af428a056b25 | diff --git a/topology/probes/neutron.go b/topology/probes/neutron.go
index <HASH>..<HASH> 100644
--- a/topology/probes/neutron.go
+++ b/topology/probes/neutron.go
@@ -112,13 +112,17 @@ func (mapper *NeutronMapper) retrievePort(portMd PortMetadata) (port ports.Port,
for _, p := range portList {
if p.MACAddress ==... | neutron: log error when neutron query fails
When neutron is not correctly configured queries will
fail and nothing will be logged. This commit fix it.
Change-Id: I<I>daf<I>df6e5bb4c<I>a<I>a<I>
Reviewed-on: <URL> | skydive-project_skydive | train |
a8d58a765deb1f59e44e750027d3ef59782d6af4 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -30,6 +30,10 @@ module.exports = merge( dispatcher.create(), {
files: files
} );
+ if ( files.length === 0 ) {
+ return;
+ }
+
files.forEach( function ( file ) {
var source = read( file );
... | REF: redefined exposed event names | royriojas_esbeautifier | train |
0b5dcd93530986720e126ccd8b8a07d5281e024a | diff --git a/hikaricp-java6/src/main/java/com/zaxxer/hikari/HikariConfig.java b/hikaricp-java6/src/main/java/com/zaxxer/hikari/HikariConfig.java
index <HASH>..<HASH> 100644
--- a/hikaricp-java6/src/main/java/com/zaxxer/hikari/HikariConfig.java
+++ b/hikaricp-java6/src/main/java/com/zaxxer/hikari/HikariConfig.java
@@ -7... | Clean-up warnings, add addition check for idleTimeout > maxLifetime. | brettwooldridge_HikariCP | train |
38ff287bc79614803b82ada3728c1432381bc59b | diff --git a/lib/cli/interactive-setup/deploy.js b/lib/cli/interactive-setup/deploy.js
index <HASH>..<HASH> 100644
--- a/lib/cli/interactive-setup/deploy.js
+++ b/lib/cli/interactive-setup/deploy.js
@@ -3,7 +3,6 @@
const Serverless = require('../../serverless');
const { writeText, style, log } = require('@serverless/... | fix(CLI Onboarding): Recognize Dashboard providers for deployment | serverless_serverless | train |
bf0690342692e8914bdc46c2116bb77b5245f496 | diff --git a/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/rules/bitext/pattern/FalseFriendsAsBitextLoader.java b/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/rules/bitext/pattern/FalseFriendsAsBitextLoader.java
index <HASH>..<HASH> 100644
--- a/trunk/JLanguageTool/src/java/de/danielnaber/languag... | add category setting to bitext rules created from false friend rules | languagetool-org_languagetool | train |
40b9bfd85dccb7497b38d96c2c09d836c0990db9 | diff --git a/tests/test_memcached.py b/tests/test_memcached.py
index <HASH>..<HASH> 100644
--- a/tests/test_memcached.py
+++ b/tests/test_memcached.py
@@ -31,3 +31,9 @@ def test_memcached_url_multiple_locations():
os.environ['CACHE_URL'] = 'memcached://127.0.0.1:11211,192.168.0.100:11211?key_prefix=site1'
con... | Test socket url with memcached | ghickman_django-cache-url | train |
4d4ccaa65ce4c894cbcbfdc068214a691c99aaa6 | diff --git a/lib/mini_object/injectable.rb b/lib/mini_object/injectable.rb
index <HASH>..<HASH> 100644
--- a/lib/mini_object/injectable.rb
+++ b/lib/mini_object/injectable.rb
@@ -30,6 +30,7 @@ module MiniObject
def cattr_injectable name, &block
define_singleton_method name, &Injectable.getsetter_definition_... | cattr_injectable defines delegator from instnace to class | manuelmorales_mini-object | train |
d7681e7b9ce4d9764310b453ac16bd60b278bfcc | diff --git a/src/livestreamer_curses/main.py b/src/livestreamer_curses/main.py
index <HASH>..<HASH> 100755
--- a/src/livestreamer_curses/main.py
+++ b/src/livestreamer_curses/main.py
@@ -40,6 +40,10 @@ from livestreamer import Livestreamer
from multiprocessing.pool import ThreadPool as Pool
from multiprocessing impor... | do not overwrite DB if it can't be read | gapato_livestreamer-curses | train |
884b0a6f203963cab2fe5186e39248325c0b0e1d | diff --git a/test/e2e/deployment.go b/test/e2e/deployment.go
index <HASH>..<HASH> 100644
--- a/test/e2e/deployment.go
+++ b/test/e2e/deployment.go
@@ -552,6 +552,10 @@ func testRolloverDeployment(f *framework.Framework) {
Expect(err).NotTo(HaveOccurred())
}
+ // Wait for replica set to become ready before adopti... | test: wait for ready replica set before adopting | kubernetes_kubernetes | train |
cb4fe1df7a0ee30d22b4dbb87dfe5182cbdaf649 | diff --git a/conway.py b/conway.py
index <HASH>..<HASH> 100755
--- a/conway.py
+++ b/conway.py
@@ -57,7 +57,11 @@ def colored_cells(term):
elif num_colors >= 8:
funcs = term.on_red, term.on_green, term.on_blue
else:
- funcs = (term.reverse,) * 3
+ # For black and white, use the checkerb... | Demonstrate the use of the vt<I> alternate charset when in B&W mode. | erikrose_conway | train |
6e33d2e3b7665c597f8d346290ef2ee7b28c4728 | diff --git a/expression/builtin_string.go b/expression/builtin_string.go
index <HASH>..<HASH> 100644
--- a/expression/builtin_string.go
+++ b/expression/builtin_string.go
@@ -1509,7 +1509,7 @@ func (b *builtinUnHexSig) evalString(row chunk.Row) (string, bool, error) {
return string(bs), false, nil
}
-const spaceCh... | expression: fix behavior for builtin 'LTrim', 'RTrim' and 'Trim' (#<I>) | pingcap_tidb | train |
e89727774873dcf90812e64aea6f928a21013170 | diff --git a/src/Google/Service/Oauth2.php b/src/Google/Service/Oauth2.php
index <HASH>..<HASH> 100644
--- a/src/Google/Service/Oauth2.php
+++ b/src/Google/Service/Oauth2.php
@@ -55,6 +55,7 @@ class Google_Service_Oauth2 extends Google_Service
public function __construct(Google_Client $client)
{
parent::__co... | Updated Oauth2.php
This change has been generated by a script that has detected changes in the
discovery doc of the API.
Check <URL> | googleapis_google-api-php-client | train |
b099d4f059a1deba24077cc1e77879c914b48b3f | diff --git a/lib/mauth_signer.rb b/lib/mauth_signer.rb
index <HASH>..<HASH> 100644
--- a/lib/mauth_signer.rb
+++ b/lib/mauth_signer.rb
@@ -3,7 +3,8 @@ require 'openssl'
module MAuth
class Signer
-
+ ALLOWED_DRIFT_SECONDS = 300
+
attr_reader :public_key, :private_key
# Initialize with public... | turn <I> secs into named const | mdsol_mauth-client-ruby | train |
33073e3531ef9d601eec4dde486556b75f82d7f8 | diff --git a/Tests/Unit/Lock/ApplicationFlockLockTest.php b/Tests/Unit/Lock/ApplicationFlockLockTest.php
index <HASH>..<HASH> 100644
--- a/Tests/Unit/Lock/ApplicationFlockLockTest.php
+++ b/Tests/Unit/Lock/ApplicationFlockLockTest.php
@@ -37,6 +37,6 @@ class ApplicationFlockLockTest extends \PHPUnit_Framework_TestCase ... | [CLEANUP] Perform inspection cleanup | DreadLabs_app-migration-typo3 | train |
3a2f749153cd0cad98815a5087a0b58d6fa4fda0 | diff --git a/app/controllers/content_view_definitions_controller.rb b/app/controllers/content_view_definitions_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/content_view_definitions_controller.rb
+++ b/app/controllers/content_view_definitions_controller.rb
@@ -85,7 +85,7 @@ class ContentViewDefinition... | content views - do not list composite definitions in content list
When a user either creates a composite definition or lists the
content for a composite definition, they should only see the
list of 'non composite' definitions and their associated views.
This commit addresses the issue where we previously listed all
de... | Katello_katello | train |
e81aaa480ee2da9eb81aed3641746735345179a4 | diff --git a/js/base/Exchange.js b/js/base/Exchange.js
index <HASH>..<HASH> 100644
--- a/js/base/Exchange.js
+++ b/js/base/Exchange.js
@@ -2656,4 +2656,49 @@ module.exports = class Exchange {
}
return undefined;
}
+
+ async fetchMyTradesBySide (side, symbol = undefined, since = undefined, limi... | fetchMyBuys and fetchMySells emulation | ccxt_ccxt | train |
17256fa92ffafa117cd612e32ab1db4c07c59083 | diff --git a/desktop/ui/src/main/java/org/datacleaner/util/DatastoreCreationUtil.java b/desktop/ui/src/main/java/org/datacleaner/util/DatastoreCreationUtil.java
index <HASH>..<HASH> 100644
--- a/desktop/ui/src/main/java/org/datacleaner/util/DatastoreCreationUtil.java
+++ b/desktop/ui/src/main/java/org/datacleaner/util/... | Issue #<I>: Showing a meaningful exception for all unknown file types. | datacleaner_DataCleaner | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.