hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
d52b562d6eb13fdac759ddb80cf6ca5e41a9d4bf
diff --git a/proxy/proxy_test.go b/proxy/proxy_test.go index <HASH>..<HASH> 100644 --- a/proxy/proxy_test.go +++ b/proxy/proxy_test.go @@ -447,6 +447,44 @@ func (s *ProxySuite) TestXFFIsAppended(c *C) { <-done } +func (s *ProxySuite) TestXRequestStartIsAppended(c *C) { + done := make(chan bool) + + s.RegisterHandl...
Added x-request-start header for each request
cloudfoundry_gorouter
train
a2eaa80086ad0cc26bfdc5142f16d6ca7b458e31
diff --git a/sdl/syswm_x11.go b/sdl/syswm_x11.go index <HASH>..<HASH> 100644 --- a/sdl/syswm_x11.go +++ b/sdl/syswm_x11.go @@ -1,4 +1,4 @@ -// +build x11 OR linux +// +build x11 package sdl
Build syswm_x<I>.go only if actually using X<I> (#<I>)
veandco_go-sdl2
train
9586d5cbd086d21b400b70d0aa03e990a355bd13
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -372,7 +372,10 @@ Runner.prototype = { return next(err); } - var env = {}; + var env = { + CI: 'true', + STRIDER: 'true', + }; if (config....
feat: Set default CI environment variables (#<I>) This allows code being run by the CI server to detect that it's running inside a CI server. The `CI` environment variable is exposed by most major CI servers, but having a vendor specific environment variable (i.e. `STRIDER`) is also common practice. For detai...
Strider-CD_strider-simple-runner
train
f285ec79448ec28ca9a354a0e6687690336e895d
diff --git a/src/sap.ui.fl/src/sap/ui/fl/themes/base/VariantManagement.less b/src/sap.ui.fl/src/sap/ui/fl/themes/base/VariantManagement.less index <HASH>..<HASH> 100644 --- a/src/sap.ui.fl/src/sap/ui/fl/themes/base/VariantManagement.less +++ b/src/sap.ui.fl/src/sap/ui/fl/themes/base/VariantManagement.less @@ -90,4 +90,...
[INTERNAL] fl.VariantManagement: alignment with comp.VariantMagement JIRA: CPOUIFDENVER-<I> Change-Id: I5b<I>e<I>b<I>e<I>b<I>d9e<I>f2f<I>a<I>a3d<I>
SAP_openui5
train
677b8728281ec0c52569113902082082fadd9eb6
diff --git a/lib/juici/interface.rb b/lib/juici/interface.rb index <HASH>..<HASH> 100644 --- a/lib/juici/interface.rb +++ b/lib/juici/interface.rb @@ -9,6 +9,10 @@ module Juici module Routes extend self NEW_BUILD = '/builds/new' + def build_new + NEW_BUILD + end + def build_list(project) ...
Use standard API retain constant for backward compatibility
richo_juici
train
1f066c5f9cadea7cd6dfebadaa8e97929d66baa4
diff --git a/src/ValidationFactory.php b/src/ValidationFactory.php index <HASH>..<HASH> 100644 --- a/src/ValidationFactory.php +++ b/src/ValidationFactory.php @@ -19,21 +19,6 @@ class ValidationFactory private $dir = ''; /** - * @var Rules - */ - private $rules; - - /** - * @var Verify - ...
clean up factory code. always return a new object. (except for filters that are set).
WScore_Validation
train
ee07ebd0c89f55acbaa49147de4e142502cd99f0
diff --git a/src/test/QafooLabs/Refactoring/Domain/Model/PhpClassNameTest.php b/src/test/QafooLabs/Refactoring/Domain/Model/PhpClassNameTest.php index <HASH>..<HASH> 100644 --- a/src/test/QafooLabs/Refactoring/Domain/Model/PhpClassNameTest.php +++ b/src/test/QafooLabs/Refactoring/Domain/Model/PhpClassNameTest.php @@ -1...
PhpClassNameTest: add assertion for getName()
QafooLabs_php-refactoring-browser
train
e3527f605995e2ddaed0ec35e9077251bbcca90d
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ CHANGE LOG * Re-write using transformers * Tweaked the limit functionality +* Made the throtter countable * Improved the test suite * Added cs fixers to the test suite * Improved the docs di...
Made the throtter countable
GrahamCampbell_Laravel-Throttle
train
d8965254ed605673a716392caa00a02dd0b56976
diff --git a/lib/zookeeper/common/queue_with_pipe.rb b/lib/zookeeper/common/queue_with_pipe.rb index <HASH>..<HASH> 100644 --- a/lib/zookeeper/common/queue_with_pipe.rb +++ b/lib/zookeeper/common/queue_with_pipe.rb @@ -82,6 +82,17 @@ module Common nil end + def open + @mutex.lock + begin + ...
add a method to reopen the pipe after its been closed
zk-ruby_zookeeper
train
10fd67bf84118affc9269ca0c0dbc8da4b0bf2cd
diff --git a/arguments.go b/arguments.go index <HASH>..<HASH> 100644 --- a/arguments.go +++ b/arguments.go @@ -25,7 +25,16 @@ import "strings" type Arguments []string +// Matches performs an case-insensitive, out-of-order check that the items +// provided exist and equal all of the args in arguments. +// Note: +//...
fix(arguments): fixes a logic bug in MatchesExact and adds documentation (#<I>)
ory_fosite
train
d3756e4babbc16692b1892138746ab33ce984aea
diff --git a/src/QueryBuilder.php b/src/QueryBuilder.php index <HASH>..<HASH> 100644 --- a/src/QueryBuilder.php +++ b/src/QueryBuilder.php @@ -100,6 +100,7 @@ class QueryBuilder extends \yii\base\Object 'eq' => 'buildEqCondition', 'ne' => 'buildNotEqCondition', 'in' ...
Added `ni` condition
hiqdev_yii2-hiart
train
a17a626ab843d522fad5e3d2e22cec5519661e55
diff --git a/internal/encoding/ssh/filexfer/attrs.go b/internal/encoding/ssh/filexfer/attrs.go index <HASH>..<HASH> 100644 --- a/internal/encoding/ssh/filexfer/attrs.go +++ b/internal/encoding/ssh/filexfer/attrs.go @@ -74,7 +74,6 @@ func (a *Attributes) SetPermissions(perms FileMode) { // GetACModTime returns the ATim...
Remove unreachable and duplicated return statement I’m confident blame will show I am at fault here, not sure how I missed it, and why `go vet` didn’t catch it either.
pkg_sftp
train
afc64aae16a730354f2bc40ad03db97f15b2325b
diff --git a/src/Core/Database/Connector/Connector.php b/src/Core/Database/Connector/Connector.php index <HASH>..<HASH> 100644 --- a/src/Core/Database/Connector/Connector.php +++ b/src/Core/Database/Connector/Connector.php @@ -26,7 +26,7 @@ abstract class Connector try { return new PDO($dsn, $user...
The call to Connector::tryAgainLostConnection() has too many arguments
jayacode_framework
train
a6912d09719fae3df3d2634d4da92c52b110700a
diff --git a/hazelcast/src/main/java/com/hazelcast/partition/impl/InternalPartitionServiceImpl.java b/hazelcast/src/main/java/com/hazelcast/partition/impl/InternalPartitionServiceImpl.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/main/java/com/hazelcast/partition/impl/InternalPartitionServiceImpl.java +++ b/haze...
Fixed java.lang.IllegalArgumentException: Target cannot be null!. This was caused by the node.masterAddress being null. This can happen after a cluster merge in the window of time between masterAddresses being cleared and repopulated.
hazelcast_hazelcast
train
f600918ee9ff412803d57b7055978d6ecfabf659
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -22,7 +22,7 @@ function hasFlex(decl) { } -function addgap(decl, opts) { +function addGap(decl, opts) { const container = decl.parent; @@ -237,7 +237,7 @@ export default postcss.plugin("postcss-gap", (opts) => { ...
Fixed naming of function addGap
limitlessloop_postcss-gutters
train
c67faf1ff58607d9bc7dd46b9a3215a41911ad92
diff --git a/lib/tools/system-calls.js b/lib/tools/system-calls.js index <HASH>..<HASH> 100644 --- a/lib/tools/system-calls.js +++ b/lib/tools/system-calls.js @@ -20,6 +20,7 @@ const DEVICE_NOT_FOUND_ERROR_REGEXP = new RegExp(`error: device ('.+' )?not foun const DEVICE_CONNECTING_ERROR_REGEXP = new RegExp('error: dev...
Fix reboot for Android O, run as root (#<I>)
appium_appium-adb
train
c4387157e51741e9830f82027bd3613b7ed3e1a1
diff --git a/lib/ohai/plugins/erlang.rb b/lib/ohai/plugins/erlang.rb index <HASH>..<HASH> 100644 --- a/lib/ohai/plugins/erlang.rb +++ b/lib/ohai/plugins/erlang.rb @@ -19,6 +19,7 @@ provides "languages/erlang" require_plugin "languages" +require_plugin "platform" output = nil
Add dependency on platform plugin for erlang
chef_ohai
train
98f75b8d8def707fb05500a79c5a8e42e610a55a
diff --git a/src/java/com/samskivert/util/ArrayIntSet.java b/src/java/com/samskivert/util/ArrayIntSet.java index <HASH>..<HASH> 100644 --- a/src/java/com/samskivert/util/ArrayIntSet.java +++ b/src/java/com/samskivert/util/ArrayIntSet.java @@ -22,7 +22,6 @@ package com.samskivert.util; import java.io.Serializable; ...
Per Dave Hoover: - <I> compatibility: Removed @Override on some methods that had no concrete implementation in superclasses. - Added @Override to a few places where there does happen to be an implementation in our abstract superclass. I now think the <I> behavior of @Override is more sensible, it's less special-cas...
samskivert_samskivert
train
fbe4ced186b4e034f0dbd7a5b6d030f3c009ec2b
diff --git a/azurerm/resource_arm_cognitive_account.go b/azurerm/resource_arm_cognitive_account.go index <HASH>..<HASH> 100644 --- a/azurerm/resource_arm_cognitive_account.go +++ b/azurerm/resource_arm_cognitive_account.go @@ -241,9 +241,7 @@ func resourceArmCognitiveAccountRead(d *schema.ResourceData, meta interface{}...
removed nil check on key1 as handled by d.set()
terraform-providers_terraform-provider-azurerm
train
0f69b14a6b9427a8723773b94fad47fe148afdb1
diff --git a/app/models/camaleon_cms/custom_field.rb b/app/models/camaleon_cms/custom_field.rb index <HASH>..<HASH> 100644 --- a/app/models/camaleon_cms/custom_field.rb +++ b/app/models/camaleon_cms/custom_field.rb @@ -7,6 +7,7 @@ See the GNU Affero General Public License (GPLv3) for more details. =end class Cama...
fixed missing primary key (postgres)
owen2345_camaleon-cms
train
40091e6c4e0b97e73cfe35d6092b9faa49bb3704
diff --git a/filesystem/File.php b/filesystem/File.php index <HASH>..<HASH> 100755 --- a/filesystem/File.php +++ b/filesystem/File.php @@ -48,7 +48,7 @@ class File extends DataObject { * @var array */ public static $allowed_extensions = array( - 'html','htm','xhtml','js','css', + '','html','htm','xhtml','js',...
BUGFIX Allow files with no extensions by setting File::$allowed_extensions with an empty string (from r<I>) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@<I> <I>b<I>ca-7a2a-<I>-9d3b-<I>d<I>a<I>a9
silverstripe_silverstripe-framework
train
edcec370bde9d97d49428478cef01913b61dd118
diff --git a/lib/openapi3_parser/nodes/components.rb b/lib/openapi3_parser/nodes/components.rb index <HASH>..<HASH> 100644 --- a/lib/openapi3_parser/nodes/components.rb +++ b/lib/openapi3_parser/nodes/components.rb @@ -4,41 +4,53 @@ require "openapi3_parser/node/object" module Openapi3Parser module Nodes + # @...
Documentation for Components node
kevindew_openapi3_parser
train
452fbf2799df55c15a530a2fb477f0afb6de8021
diff --git a/Stub/StubIntlDateFormatter.php b/Stub/StubIntlDateFormatter.php index <HASH>..<HASH> 100644 --- a/Stub/StubIntlDateFormatter.php +++ b/Stub/StubIntlDateFormatter.php @@ -179,8 +179,17 @@ class StubIntlDateFormatter } // behave like the intl extension + $argumentError = null; ...
[Locale] fixed StubIntlDateFormatter::format() to set the right error for PHP >= <I> and to behave like the intl when formatting successfully
symfony_locale
train
5f8b5bf8ec7fe816b2f6f1b766f6edbd38ff03da
diff --git a/src/main/java/io/dropwizard/flyway/cli/DbCommand.java b/src/main/java/io/dropwizard/flyway/cli/DbCommand.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/dropwizard/flyway/cli/DbCommand.java +++ b/src/main/java/io/dropwizard/flyway/cli/DbCommand.java @@ -34,6 +34,7 @@ public class DbCommand<T extend...
Add missing call to DbCommand#configure
dropwizard_dropwizard-flyway
train
6f0896531705016011abf73473e0fc330afebc63
diff --git a/loguru/__init__.py b/loguru/__init__.py index <HASH>..<HASH> 100644 --- a/loguru/__init__.py +++ b/loguru/__init__.py @@ -82,36 +82,29 @@ class StrRecord(str): class Handler: - def __init__(self, *, writter, level, format, filter, colored, better_exceptions): + def __init__(self, *, writter, lev...
No longer shadow built-in "format" in private functions
Delgan_loguru
train
9194c5d8ad73bb4b4b975bb351b2e60d4f787198
diff --git a/Manager/WidgetsManager.php b/Manager/WidgetsManager.php index <HASH>..<HASH> 100644 --- a/Manager/WidgetsManager.php +++ b/Manager/WidgetsManager.php @@ -146,7 +146,7 @@ class WidgetsManager ); /** @var AbstractWidget $replacedWidget */ $replacedWidget = $...
[PortfolioBundle] Fix setting the new row of a replaced widget
claroline_Distribution
train
27c60e131057ce97435abd0618ea298e97f71085
diff --git a/core/array.rb b/core/array.rb index <HASH>..<HASH> 100644 --- a/core/array.rb +++ b/core/array.rb @@ -120,8 +120,9 @@ class Array if (typeof index !== 'number') { if (index.o$flags & T_RANGE) { - length = index.end; - index = index.begin; + var exclude = index....
Add specs for '...' ranges in Array#[] and Array#slice
opal_opal
train
ec95ca98a53b8e347d82c133bb843063ea4883fb
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -111,7 +111,7 @@ hexo.extend.filter.register('before_generate', function() { return } return vow.all(_.map(options.profiles, function(profile, profileName) { - post[profileName + '_cover'] = url.resolve( ...
changed frontmatter key to camelcase
leviwheatcroft_hexo-thumbnails
train
bc9673efe03a42587fd6ff0c14b5f0d3343659f4
diff --git a/src/Models/BaseServiceConfigModel.php b/src/Models/BaseServiceConfigModel.php index <HASH>..<HASH> 100644 --- a/src/Models/BaseServiceConfigModel.php +++ b/src/Models/BaseServiceConfigModel.php @@ -105,6 +105,10 @@ abstract class BaseServiceConfigModel extends BaseModel implements ServiceConfig if...
hiding hidden column/fields on service config models schema
dreamfactorysoftware_df-core
train
2196c92c0ef4e3d3622d5a8bb549e5faed135382
diff --git a/modules/caddyhttp/reverseproxy/upstreams.go b/modules/caddyhttp/reverseproxy/upstreams.go index <HASH>..<HASH> 100644 --- a/modules/caddyhttp/reverseproxy/upstreams.go +++ b/modules/caddyhttp/reverseproxy/upstreams.go @@ -186,7 +186,6 @@ func (su SRVUpstreams) expandedAddr(r *http.Request) (addr, service, ...
reverseproxy: Don't clear name in SRV upstreams Fix for dc4d<I>f<I>d<I>b<I>e7d4
mholt_caddy
train
ed4e7e888e04f6f7ea5078a91e51966da5077150
diff --git a/src/Command/Site/ModeCommand.php b/src/Command/Site/ModeCommand.php index <HASH>..<HASH> 100644 --- a/src/Command/Site/ModeCommand.php +++ b/src/Command/Site/ModeCommand.php @@ -107,6 +107,7 @@ class ModeCommand extends Command } $servicesOverrideResult = $this->overrideServices( + ...
Include service option for http.response.debug_cacheability_headers (#<I>)
hechoendrupal_drupal-console
train
016eded1dea75f32cd51831dafeb6fef89994fe0
diff --git a/rb/lib/selenium/webdriver/common/log_entry.rb b/rb/lib/selenium/webdriver/common/log_entry.rb index <HASH>..<HASH> 100644 --- a/rb/lib/selenium/webdriver/common/log_entry.rb +++ b/rb/lib/selenium/webdriver/common/log_entry.rb @@ -30,14 +30,14 @@ module Selenium def as_json(*) { - ...
[rb]: Standardise driver logging output (#<I>) Ensure all log formats (Including browser ones), are in a consistent format
SeleniumHQ_selenium
train
9547b6c8432e2fa0917978a9de52227819295787
diff --git a/hazelcast/src/test/java/com/hazelcast/ringbuffer/impl/RingbufferAddAllReadManyStressTest.java b/hazelcast/src/test/java/com/hazelcast/ringbuffer/impl/RingbufferAddAllReadManyStressTest.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/test/java/com/hazelcast/ringbuffer/impl/RingbufferAddAllReadManyStres...
RingbufferAddAlLReadManyStressTest logging fix
hazelcast_hazelcast
train
5f43e2a22b4497614e5f19e2912f32758d3cb298
diff --git a/kernel/content/view.php b/kernel/content/view.php index <HASH>..<HASH> 100644 --- a/kernel/content/view.php +++ b/kernel/content/view.php @@ -199,8 +199,14 @@ else $node =& eZContentObjectTreeNode::fetch( $NodeID ); } + if ( !is_object( $node ) ) + return $Module->handleError( EZ_...
- Made sure the fetch node and object is checked before being used, if they do not exist in the database the view returns with EZ_ERROR_KERNEL_NOT_AVAILABLE. git-svn-id: file:///home/patrick.allaert/svn-git/ezp-repo/ezpublish/trunk@<I> a<I>eee8c-daba-<I>-acae-fa<I>f<I>
ezsystems_ezpublish-legacy
train
29df95adfc3f9709720bf639924c77f7a646309b
diff --git a/helpers/translation/TranslationBundle.php b/helpers/translation/TranslationBundle.php index <HASH>..<HASH> 100644 --- a/helpers/translation/TranslationBundle.php +++ b/helpers/translation/TranslationBundle.php @@ -110,7 +110,10 @@ class TranslationBundle { 'translations' => $translations ...
change the path of client translation bundles
oat-sa_tao-core
train
79e60c96e51c57a50a586857e799be76753a1a96
diff --git a/lib/ungulate/job.rb b/lib/ungulate/job.rb index <HASH>..<HASH> 100644 --- a/lib/ungulate/job.rb +++ b/lib/ungulate/job.rb @@ -6,7 +6,7 @@ require 'yaml' module Ungulate class Job - attr_accessor :bucket, :key, :queue, :versions + attr_accessor :bucket, :key, :notification_url, :queue, :versions...
support sending of PUT notification to a particular URL at end of job
camelpunch_ungulate
train
ad81212ec3194d767913baf7a0b80b6a9720ba3a
diff --git a/admin/user.php b/admin/user.php index <HASH>..<HASH> 100644 --- a/admin/user.php +++ b/admin/user.php @@ -156,21 +156,8 @@ if ($users = get_records_sql("SELECT id, username, email, firstname, lastname, city, country, lastaccess from user WHERE username <> 'guest' ...
Rearranged code so some output is printed before tackling the big table
moodle_moodle
train
dd8767f5b08ac64fb0afae3dff669abd9e0360a5
diff --git a/validator/setup.py b/validator/setup.py index <HASH>..<HASH> 100644 --- a/validator/setup.py +++ b/validator/setup.py @@ -83,33 +83,19 @@ else: library_dirs = [] if os.name == 'nt': - conf_dir = "C:\\Program Files (x86)\\Intel\\sawtooth-validator\\conf" - log_dir = "C:\\Program Files (x86)\\I...
Update sawtooth default paths in setup.py This changes from "sawtooth-validator" directories to "sawtooth" directories (example: /etc/sawtooth-validator -> /etc/sawtooth) to match the new default locations. Removes run_dir since it is not currently used by the validator. Removes static files which no longer exist.
hyperledger_sawtooth-core
train
c653b912d86e50b96bb06b733aee9e1b60ec31e7
diff --git a/doc/source/cookbook/environment.rst b/doc/source/cookbook/environment.rst index <HASH>..<HASH> 100644 --- a/doc/source/cookbook/environment.rst +++ b/doc/source/cookbook/environment.rst @@ -31,8 +31,8 @@ Note in case you use the environment there is no need to call :func:`~pypet.trajectory.Trajectory.f_st...
Removed small bug I introduced in former commit
SmokinCaterpillar_pypet
train
8c3e02624942430171ce579ec6126de421ec3cbe
diff --git a/packages/core/utils/src/openInBrowser.js b/packages/core/utils/src/openInBrowser.js index <HASH>..<HASH> 100644 --- a/packages/core/utils/src/openInBrowser.js +++ b/packages/core/utils/src/openInBrowser.js @@ -49,7 +49,9 @@ function getAppName(appName: string): string { export default async function openI...
empty string for --open cli param is treated as undefined (#<I>)
parcel-bundler_parcel
train
7a844d34983496c4ad02e6b7d95fedb54fb9da17
diff --git a/tests/phpunit/unit/Twig/TwigExtensionTest.php b/tests/phpunit/unit/Twig/TwigExtensionTest.php index <HASH>..<HASH> 100644 --- a/tests/phpunit/unit/Twig/TwigExtensionTest.php +++ b/tests/phpunit/unit/Twig/TwigExtensionTest.php @@ -3,6 +3,8 @@ namespace Bolt\Tests\Twig; use Bolt\EventListener\ConfigListen...
[Tests] Update TwigExtensionTest as TwigExtension no longer requires handlers to load
bolt_bolt
train
ed5667a57891a1b9bf0bd01bafeddf38952d149e
diff --git a/src/Plugin.php b/src/Plugin.php index <HASH>..<HASH> 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -35,6 +35,7 @@ class Plugin implements PluginInterface, EventSubscriberInterface const MESSAGE_NOTHING_TO_INSTALL = 'Nothing to install or update'; const MESSAGE_NOT_INSTALLED = 'PHPCodeSniffe...
Improves readability of Plugin::isPHPCodeSnifferInstalled() method.
Dealerdirect_phpcodesniffer-composer-installer
train
f7d9dfafd0c486b31957e0eefa0bf792bfba9b10
diff --git a/provider/kubernetes/kubernetes.go b/provider/kubernetes/kubernetes.go index <HASH>..<HASH> 100644 --- a/provider/kubernetes/kubernetes.go +++ b/provider/kubernetes/kubernetes.go @@ -27,9 +27,6 @@ var _ provider.Provider = (*Provider)(nil) const ( annotationFrontendRuleType = "traefik.frontend.rule.typ...
[k8s] Remove rule type path list. Instead of doing sanity checks in the Kubernetes provider, we just accept any non-empty value from the annotation and rely on the server part to filter out unknown rules. This allows us to automatically stay in sync with the currently supported Path matchers/modifiers.
containous_traefik
train
83232201f9304af54303289db0c7846da46ab19e
diff --git a/lib/pusher.rb b/lib/pusher.rb index <HASH>..<HASH> 100644 --- a/lib/pusher.rb +++ b/lib/pusher.rb @@ -30,7 +30,7 @@ module Pusher def_delegators :default_client, :authentication_token, :url def_delegators :default_client, :encrypted=, :url= - def_delegators :default_client, :channels, :prese...
Add support for sending options to /channels API * Removed the presence API: it has been replaced by extending /channels
pusher_pusher-http-ruby
train
fa8e1c9b21f1766bc74114e6cf579fe585702934
diff --git a/perspective-sql/src/main/java/org/meridor/perspective/sql/impl/parser/DataSource.java b/perspective-sql/src/main/java/org/meridor/perspective/sql/impl/parser/DataSource.java index <HASH>..<HASH> 100644 --- a/perspective-sql/src/main/java/org/meridor/perspective/sql/impl/parser/DataSource.java +++ b/perspec...
Removed newlines and tables from DataSource pretty-printing
meridor_perspective-backend
train
bd95f5350e7b5d834b3fd74f251b6f0a71d92e39
diff --git a/src/jsonPointer.js b/src/jsonPointer.js index <HASH>..<HASH> 100644 --- a/src/jsonPointer.js +++ b/src/jsonPointer.js @@ -32,7 +32,8 @@ /** - * Returns |target| object's value pointed by |pointer|. + * Returns |target| object's value pointed by |pointer|, returns undefined + * if |pointer| poi...
Return undefined if value was not found
alexeykuzmin_jsonpointer.js
train
31a6087851abc2cae2e55f0502aef07acdb3c78d
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -8,8 +8,6 @@ except ImportError: print 'TRYING: from distutils.core import setup' from distutils.core import setup from distutils.extension import Extension -# -import numpy # If we're building from Git (no PKG...
Allow pip to discover it needs numpy.
probcomp_crosscat
train
8db1918397c21bc88ddcd9b473fd657de47a5ebb
diff --git a/xmldog/src/main/java/jlibs/xml/sax/dog/XPathResults.java b/xmldog/src/main/java/jlibs/xml/sax/dog/XPathResults.java index <HASH>..<HASH> 100644 --- a/xmldog/src/main/java/jlibs/xml/sax/dog/XPathResults.java +++ b/xmldog/src/main/java/jlibs/xml/sax/dog/XPathResults.java @@ -72,23 +72,22 @@ public class XPat...
use list of lists as pathexpression result
santhosh-tekuri_jlibs
train
3495be364f75aefccf3e7fb0b68e5b5060fa265e
diff --git a/HydraServer/python/HydraServer/lib/template.py b/HydraServer/python/HydraServer/lib/template.py index <HASH>..<HASH> 100644 --- a/HydraServer/python/HydraServer/lib/template.py +++ b/HydraServer/python/HydraServer/lib/template.py @@ -794,17 +794,24 @@ def remove_type_from_resource( type_id, resource_type, ...
Check to make sure that data restriction is a dict and isn't empty.
hydraplatform_hydra-base
train
94f96f0758785fe0c31f2c3309f3b87c81411ab8
diff --git a/asciimatics/widgets.py b/asciimatics/widgets.py index <HASH>..<HASH> 100644 --- a/asciimatics/widgets.py +++ b/asciimatics/widgets.py @@ -454,7 +454,8 @@ class Frame(Effect): def _update(self, frame_no): # TODO: Should really be in a separate Desktop Manager class - wait for v2.0 if ...
Fix issue with experimental effects embedded in Frames
peterbrittain_asciimatics
train
f15cfa08c1a02a776eeb9f90c7d24590c1ab9cdf
diff --git a/repository/upload/repository.class.php b/repository/upload/repository.class.php index <HASH>..<HASH> 100755 --- a/repository/upload/repository.class.php +++ b/repository/upload/repository.class.php @@ -13,7 +13,8 @@ class repository_upload extends repository { global $SESSION, $action, $CFG; ...
"MDL-<I>, use a random path for uploaded file"
moodle_moodle
train
0cada103079dfbe89fe5f66c2ea806c101babd79
diff --git a/test/test-cases.js b/test/test-cases.js index <HASH>..<HASH> 100644 --- a/test/test-cases.js +++ b/test/test-cases.js @@ -48,6 +48,20 @@ module.exports = { ]) ], + "complex class name": [ + ".class\\.Name", + singleSelector([ + { type: "class", name: "class\\.Name" } + ]) + ], + + "class name s...
added a few edge cases for the parser around escaped characters
css-modules_css-selector-tokenizer
train
ed06ba427c28e6408d35cda0b2acb93b7e1394ea
diff --git a/edalize/ghdl.py b/edalize/ghdl.py index <HASH>..<HASH> 100644 --- a/edalize/ghdl.py +++ b/edalize/ghdl.py @@ -89,9 +89,10 @@ class Ghdl(Edatool): ghdlimport = "" vhdl_sources = "" - # GHDL doesn't support the dot notation used by other tools (e.g. - # my_lib.top_design) fo...
[GHDL] Dot notation for specifying my_lib.top_unit is supported
olofk_edalize
train
997a5437f5213a9afdf9261358b6803ff278a169
diff --git a/public/javascripts/provider_redhat.js b/public/javascripts/provider_redhat.js index <HASH>..<HASH> 100644 --- a/public/javascripts/provider_redhat.js +++ b/public/javascripts/provider_redhat.js @@ -29,7 +29,8 @@ $(document).ready(function() { onNodeShow: function(){$.sparkline_display_visible()} })...
Small fix to get the redhat enablement working in FF <I>
Katello_katello
train
059b77dd82dc78b52e6ca2169278ce2c3c8210de
diff --git a/lib/db.js b/lib/db.js index <HASH>..<HASH> 100644 --- a/lib/db.js +++ b/lib/db.js @@ -1282,6 +1282,7 @@ db.bulk = function(list, options, callback) // - start - the primary key to start the scan from // - search - use search instead of select, for ElasticSearch,... // - batch - if true rowCallb...
support concurrency in db scans
vseryakov_backendjs
train
a656e14e0dee10bb49289d9584c2b2aa01588398
diff --git a/src/main/java/com/j256/ormlite/stmt/StatementExecutor.java b/src/main/java/com/j256/ormlite/stmt/StatementExecutor.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/j256/ormlite/stmt/StatementExecutor.java +++ b/src/main/java/com/j256/ormlite/stmt/StatementExecutor.java @@ -618,9 +618,7 @@ public cl...
Always clear special connection on batch tasks.
j256_ormlite-core
train
3fcdb9f8f972232d192bac3125494614e4f61efd
diff --git a/polyaxon/api/experiments/views.py b/polyaxon/api/experiments/views.py index <HASH>..<HASH> 100644 --- a/polyaxon/api/experiments/views.py +++ b/polyaxon/api/experiments/views.py @@ -498,15 +498,14 @@ class ExperimentLogsView(ExperimentViewMixin, RetrieveAPIView, PostAPIView): def post(self, request,...
Send logs directly as text blob
polyaxon_polyaxon
train
24c012291ab455cffc410fd239a9f39e0617a8f2
diff --git a/src/main/java/org/sfm/jdbc/JdbcMapperBuilder.java b/src/main/java/org/sfm/jdbc/JdbcMapperBuilder.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/sfm/jdbc/JdbcMapperBuilder.java +++ b/src/main/java/org/sfm/jdbc/JdbcMapperBuilder.java @@ -81,7 +81,6 @@ public final class JdbcMapperBuilder<T> { ...
remove need to pass fieldmapperfactory
arnaudroger_SimpleFlatMapper
train
020325617129b6ae9b25da1126ba0f98b044bb1b
diff --git a/interop-testing/src/main/java/io/grpc/testing/integration/TestServiceClient.java b/interop-testing/src/main/java/io/grpc/testing/integration/TestServiceClient.java index <HASH>..<HASH> 100644 --- a/interop-testing/src/main/java/io/grpc/testing/integration/TestServiceClient.java +++ b/interop-testing/src/ma...
interop-testing: Avoid alts incompatibility with netty alts requires netty-shaded, not netty.
grpc_grpc-java
train
7d897a7cee757b4d021c7d0734018c15acca4363
diff --git a/library/CM/Model/Abstract.php b/library/CM/Model/Abstract.php index <HASH>..<HASH> 100644 --- a/library/CM/Model/Abstract.php +++ b/library/CM/Model/Abstract.php @@ -650,11 +650,4 @@ abstract class CM_Model_Abstract extends CM_Class_Abstract implements CM_Compara public static function fromArray(array...
Removed legacy getAssets
cargomedia_cm
train
7c571383dc906679faa9dc1570d1dff66f0cd02c
diff --git a/ipyrad/core/params.py b/ipyrad/core/params.py index <HASH>..<HASH> 100644 --- a/ipyrad/core/params.py +++ b/ipyrad/core/params.py @@ -417,6 +417,15 @@ class Params(object): # returns string values as a tuple ("", "") or ("",) value = tuplecheck(value, str) + # Fix a weird...
Fix a nasty stupid bug setting the overhang sequence
dereneaton_ipyrad
train
50efd0cf8a617efd8a98130004335bd48af84b51
diff --git a/request.js b/request.js index <HASH>..<HASH> 100644 --- a/request.js +++ b/request.js @@ -116,6 +116,10 @@ TChannelRequest.prototype.shouldRetry = function shouldRetry(err, res, arg2, arg } } + if (!res.ok && self.options.shouldApplicationRetry) { + return self.options.shouldAppli...
TChannelRequest: add application retry support
uber_tchannel-node
train
ca40642c08b48a52f2df162d20cdfb3d436bf7d7
diff --git a/luminoso_api/upload.py b/luminoso_api/upload.py index <HASH>..<HASH> 100644 --- a/luminoso_api/upload.py +++ b/luminoso_api/upload.py @@ -49,7 +49,7 @@ def upload_stream(stream, server, account, projname, reader_dict, project.wait_for(final_job_id) def upload_file(filename, server, account, pro...
let the vectorize_only option through upload_file
LuminosoInsight_luminoso-api-client-python
train
abcd6e263ae36ea9a202ef2b43486920f9e32882
diff --git a/serv/init/systemd.py b/serv/init/systemd.py index <HASH>..<HASH> 100644 --- a/serv/init/systemd.py +++ b/serv/init/systemd.py @@ -168,7 +168,10 @@ class SystemD(Base): def is_system_exists(): try: - sh.systemctl('--version') - return True - except sh.CommandNotFound: + try: ...
Fix ordering of skipping tests since some skips require testing only linux enabled stuff
nir0s_serv
train
893d228e5e0b6efa8c3614128ff611b30b9a88b2
diff --git a/datastore/google/cloud/datastore/__init__.py b/datastore/google/cloud/datastore/__init__.py index <HASH>..<HASH> 100644 --- a/datastore/google/cloud/datastore/__init__.py +++ b/datastore/google/cloud/datastore/__init__.py @@ -18,17 +18,17 @@ You'll typically use these to get started with the API: .. doc...
Changing doctest indent from 2->3 spaces to be uniform.
googleapis_google-cloud-python
train
0bf15a50f3ce3d08eef6da166f5723b99c9b5ef4
diff --git a/gist/gist.py b/gist/gist.py index <HASH>..<HASH> 100644 --- a/gist/gist.py +++ b/gist/gist.py @@ -9,7 +9,7 @@ import shutil import tarfile import tempfile -__version__ = '0.2.0' +__version__ = '0.2.1' requests.packages.urllib3.disable_warnings() diff --git a/setup.py b/setup.py index <HASH>..<HASH...
gist: fixed installation error The problem with retrieving the version number from the gist package from the setup.py script is that gist has dependencies on packages that may not have been installed yet. This causes the installation to fail.
jdowner_gist
train
1544f5147125856e4de066e566820bd8548be007
diff --git a/source/rafcon/gui/mygaphas/view.py b/source/rafcon/gui/mygaphas/view.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/mygaphas/view.py +++ b/source/rafcon/gui/mygaphas/view.py @@ -31,6 +31,7 @@ class ExtendedGtkView(GtkView, Observer): Observer.__init__(self) self._selection = state...
fix(gaphas): Expose event on destruction If a model had been selected when the GUI was closed, that element was drawn, as it was deselected by the Selection. This had led (under some circumstances) to exception during the close operation. This is now fixed by relieving the Selection in the ExtendedGTKView when then r...
DLR-RM_RAFCON
train
b783b70a50bf7d419bcfe8e2ca5cee81a8069a6b
diff --git a/ternary/ternary_axes_subplot.py b/ternary/ternary_axes_subplot.py index <HASH>..<HASH> 100644 --- a/ternary/ternary_axes_subplot.py +++ b/ternary/ternary_axes_subplot.py @@ -184,7 +184,7 @@ class TernaryAxesSubplot(object): """ if not position: - position = (1./2, offset, 1./...
Changed offset behaviour of bottom_axis_label Added a minus sign in the definition of position in bottom_axis_label() so that increasing the value of offset moves the label down, further below the bottom axis. This seemed more intuitive to me because when increasingn the value of offset for the other two axes, the lab...
marcharper_python-ternary
train
762e50e8122bb007866006cc8a429a3e229183f3
diff --git a/src/Support/Minutes.php b/src/Support/Minutes.php index <HASH>..<HASH> 100644 --- a/src/Support/Minutes.php +++ b/src/Support/Minutes.php @@ -17,7 +17,16 @@ class Minutes { { $this->minutes = $minutes; - $this->calculateStartEnd(); + if ($minutes instanceof Minutes) + { + $this->start ...
Add conversion from number minutes to class Minute
antonioribeiro_tracker
train
1688b043db26e8a70d6e067b502302a597959878
diff --git a/xchange-kraken/src/main/java/org/knowm/xchange/kraken/KrakenAdapters.java b/xchange-kraken/src/main/java/org/knowm/xchange/kraken/KrakenAdapters.java index <HASH>..<HASH> 100644 --- a/xchange-kraken/src/main/java/org/knowm/xchange/kraken/KrakenAdapters.java +++ b/xchange-kraken/src/main/java/org/knowm/xcha...
[kraken] fixed timestamp parse for open orders
knowm_XChange
train
0677d17d9d3848b8a04f74ef653b240b4a26e3c9
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ unreleased ---------- - Change Google Pay button to black style to better match [Google's brand guidelines](https://developers.google.com/pay/api/web/guides/brand-guidelines) - Allow passing in ...
Fix issue where Drop-in would emit requestable events after tokenization (#<I>) * Fix issue where Drop-in would emit requestable events after tokenization * Fix unit test
braintree_braintree-web-drop-in
train
f8daa2bc6d0abef6ed477b82ce46cc532e2ed02f
diff --git a/xchange-okcoin/src/main/java/com/xeiam/xchange/okcoin/OkCoinAdapters.java b/xchange-okcoin/src/main/java/com/xeiam/xchange/okcoin/OkCoinAdapters.java index <HASH>..<HASH> 100644 --- a/xchange-okcoin/src/main/java/com/xeiam/xchange/okcoin/OkCoinAdapters.java +++ b/xchange-okcoin/src/main/java/com/xeiam/xcha...
Account Equity already contains all realised and unrealised pnl
knowm_XChange
train
e5ee41f6892a68ecfda9fb30d9f31b09452b23da
diff --git a/colin/cli/colin.py b/colin/cli/colin.py index <HASH>..<HASH> 100644 --- a/colin/cli/colin.py +++ b/colin/cli/colin.py @@ -116,24 +116,52 @@ def list_checks(ruleset, ruleset_file, debug, json, verbose): if debug and verbose: raise click.BadOptionUsage("Options '--debug' and '--verbose' cannot ...
Handle errors in the subcommands
user-cont_colin
train
71379beab85df346a2e84e29a6a8bde7ae173c0a
diff --git a/lib/client.js b/lib/client.js index <HASH>..<HASH> 100644 --- a/lib/client.js +++ b/lib/client.js @@ -242,6 +242,8 @@ Client.prototype.connect = function(cfg) { self.emit('drain'); }).once('header', function(header) { self._remoteVer = header.versions.software; + }).on('continue', function() ...
lib: re-emit continue event for client and server
mscdex_ssh2
train
b9d79b1f5fde5c8933e841248261066d316b962e
diff --git a/activerecord/test/cases/adapter_test.rb b/activerecord/test/cases/adapter_test.rb index <HASH>..<HASH> 100644 --- a/activerecord/test/cases/adapter_test.rb +++ b/activerecord/test/cases/adapter_test.rb @@ -92,7 +92,7 @@ module ActiveRecord ) end ensure - ActiveReco...
using symbol instead of string in establish_connection
rails_rails
train
63f4a769c672fb05d4ab75e69ac8d77262b58f6c
diff --git a/discord/client.py b/discord/client.py index <HASH>..<HASH> 100644 --- a/discord/client.py +++ b/discord/client.py @@ -388,8 +388,10 @@ class Client: you should run it in an executor or schedule the coroutine to be executed later using ``loop.create_task``. - This function throws ...
Documentation fixes in Client.connect.
Rapptz_discord.py
train
88cace4d58584318224dc0ab6ebd3c39c16fe133
diff --git a/core-bundle/src/Resources/contao/dca/tl_content.php b/core-bundle/src/Resources/contao/dca/tl_content.php index <HASH>..<HASH> 100644 --- a/core-bundle/src/Resources/contao/dca/tl_content.php +++ b/core-bundle/src/Resources/contao/dca/tl_content.php @@ -178,7 +178,7 @@ $GLOBALS['TL_DCA']['tl_content'] = ar...
[Core] Render the file tree view based on the eval flags (see #<I>)
contao_contao
train
f18f7795bf635706efdded186c0a08469ee058c7
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1116,10 +1116,13 @@ DCP.getAllUsers = function(callback) { var client = this, servers = Object.keys(this.servers).filter(function(s) { s = client.servers[s]; - return s.member_count !== Object.key...
Fix getAllUsers for unavailable servers, emit if received all users
izy521_discord.io
train
556245e2ce744ff75b2de2dd5b865bacecdafa6d
diff --git a/pandas/core/indexes/interval.py b/pandas/core/indexes/interval.py index <HASH>..<HASH> 100644 --- a/pandas/core/indexes/interval.py +++ b/pandas/core/indexes/interval.py @@ -1250,15 +1250,9 @@ class IntervalIndex(IntervalMixin, Index): first_nan_loc = np.arange(len(self))[self.isna()][0] ...
PERF: speed up IntervalIndex._intersection_non_unique by ~<I>x (#<I>)
pandas-dev_pandas
train
aad490186e2a09b1bdb448bae71c028cb3e6d475
diff --git a/lib/selections/belongs_to_selection.rb b/lib/selections/belongs_to_selection.rb index <HASH>..<HASH> 100644 --- a/lib/selections/belongs_to_selection.rb +++ b/lib/selections/belongs_to_selection.rb @@ -93,7 +93,7 @@ module Selections end def predicate_method?(method) - me...
Update method_missing methods for has_many and belongs_to * The method_missing attribute is added to the same model for has_many and belongs_to so they need to be checking both relationship types
nigelr_selections
train
6e5124daf2aedf14ee5a4947372d0f8fba96b9ee
diff --git a/lib/linked_in/api/query_methods.rb b/lib/linked_in/api/query_methods.rb index <HASH>..<HASH> 100644 --- a/lib/linked_in/api/query_methods.rb +++ b/lib/linked_in/api/query_methods.rb @@ -43,6 +43,11 @@ module LinkedIn simple_query(path, options) end + def group(options = {}) + ...
modified the query methods to support groups as well as nested field hashes/objects. Modified the update methods to be able to share to a group
hexgnu_linkedin
train
a24596989d29052c1028dfbc61de81f577c33ec9
diff --git a/extdirectspring-demo/src/main/java/ch/ralscha/extdirectspring/demo/MyStringHttpMessageConverter.java b/extdirectspring-demo/src/main/java/ch/ralscha/extdirectspring/demo/MyStringHttpMessageConverter.java index <HASH>..<HASH> 100644 --- a/extdirectspring-demo/src/main/java/ch/ralscha/extdirectspring/demo/My...
trying to fix the encoding problem
ralscha_extdirectspring
train
0fc0397d779d96879d7b903c3fa1b9bd53e490e3
diff --git a/xds/internal/balancer/cdsbalancer/cdsbalancer.go b/xds/internal/balancer/cdsbalancer/cdsbalancer.go index <HASH>..<HASH> 100644 --- a/xds/internal/balancer/cdsbalancer/cdsbalancer.go +++ b/xds/internal/balancer/cdsbalancer/cdsbalancer.go @@ -78,6 +78,7 @@ func (cdsBB) Build(cc balancer.ClientConn, opts bal...
xds: actually close stuff in cds/eds `Close()` (#<I>)
grpc_grpc-go
train
faf8bf405be44f38e8222af30563ef2597f7bb58
diff --git a/js/binance.js b/js/binance.js index <HASH>..<HASH> 100644 --- a/js/binance.js +++ b/js/binance.js @@ -845,12 +845,7 @@ module.exports = class binance extends Exchange { if (typeof since !== 'undefined') para['startTime'] = since; let response = await this.wapiGetDepositHistor...
minor edits in binance handleErrors
ccxt_ccxt
train
8e8e43e38c93bc6ad5c3dcd2f11231690c332d6b
diff --git a/master/buildbot/status/web/waterfall.py b/master/buildbot/status/web/waterfall.py index <HASH>..<HASH> 100644 --- a/master/buildbot/status/web/waterfall.py +++ b/master/buildbot/status/web/waterfall.py @@ -110,7 +110,7 @@ class CurrentBox(components.Adapter): brcount = brcounts[builderName] ...
Sort next builds in waterfall Fixes #<I>.
buildbot_buildbot
train
2eca8ee83be9e6ed8c9a59145da46861ff25e975
diff --git a/features/steps/metric_configuration.py b/features/steps/metric_configuration.py index <HASH>..<HASH> 100644 --- a/features/steps/metric_configuration.py +++ b/features/steps/metric_configuration.py @@ -1,5 +1,5 @@ from behave import * -from nose.tools import assert_true, assert_in, assert_equal +from nose...
Improved assertion in MetricConfiguration error step. Now using assert_is_instance for a better error message.
mezuro_kalibro_client_py
train
2bb4ed01be3e5cd71e1cf142710ef748eca436c5
diff --git a/lib/Cake/Controller/Component/SecurityComponent.php b/lib/Cake/Controller/Component/SecurityComponent.php index <HASH>..<HASH> 100644 --- a/lib/Cake/Controller/Component/SecurityComponent.php +++ b/lib/Cake/Controller/Component/SecurityComponent.php @@ -208,6 +208,9 @@ class SecurityComponent extends Compo...
Removing _Token from request data. It is not used outside the component and could possibly affect Model::save(). Fixes #<I>
cakephp_cakephp
train
6c889161d7f1de09a67f94f6631763bbe7581892
diff --git a/opencensus/trace/exporters/zipkin_exporter.py b/opencensus/trace/exporters/zipkin_exporter.py index <HASH>..<HASH> 100644 --- a/opencensus/trace/exporters/zipkin_exporter.py +++ b/opencensus/trace/exporters/zipkin_exporter.py @@ -137,10 +137,6 @@ class ZipkinExporter(base.Exporter): :returns: List...
fix ZipkinExporter when using BackgroundThreadTransport (#<I>) * changed time precision on zipkin exporter to microseconds * fixed tests * fixed line length * fixed translate_to_zipkin function on ZipkinExporter - previously when using BackgroundThreadTransport, all traces were sent with same trace_id
census-instrumentation_opencensus-python
train
9bde6e5fedb44945d6b68200f62a243cff8a9613
diff --git a/suspect/io/tarquin.py b/suspect/io/tarquin.py index <HASH>..<HASH> 100644 --- a/suspect/io/tarquin.py +++ b/suspect/io/tarquin.py @@ -1,3 +1,6 @@ +import subprocess + + def save_dpt(filename, data): with open(filename, 'wb') as fout: fout.write("Dangerplot_version\t1.0\n".encode()) @@ -10,4 ...
first integration with tarquin quantitation software
bennyrowland_suspect
train
ce8b53d99c1cc55f2fc8076383c06b80a28fa2e8
diff --git a/spec/unit/resource/api800/c7000/storage_pool_spec.rb b/spec/unit/resource/api800/c7000/storage_pool_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/resource/api800/c7000/storage_pool_spec.rb +++ b/spec/unit/resource/api800/c7000/storage_pool_spec.rb @@ -1,4 +1,4 @@ -# (C) Copyright 2017 Hewlett Packard...
Update storage_pool_spec.rb
HewlettPackard_oneview-sdk-ruby
train
1930d510448e5d06ef4795be97e8b5b24e4e6618
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,6 @@ setup( 'Converting plain ASCII punctuation characters into HTML ' 'entities according to basic typography rules' ), - long_description=open('README.rst').read(), author=meta['autho...
Removed long description, because it looks silly on PyPI.
honzajavorek_tipi
train
1385c677bdc4c8007173e75a3e4a13cb861adb1a
diff --git a/acceptancetests/substrate.py b/acceptancetests/substrate.py index <HASH>..<HASH> 100644 --- a/acceptancetests/substrate.py +++ b/acceptancetests/substrate.py @@ -1,6 +1,6 @@ from contextlib import ( contextmanager, - ) +) import json import logging import os @@ -19,7 +19,7 @@ import gce from u...
Add K8sAccount substrate and register into substrate_factory
juju_juju
train
691ed78ea8a1fa1fe43e23262934d05b21131eef
diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/search/InlineSearchPane.js b/bundles/org.eclipse.orion.client.ui/web/orion/search/InlineSearchPane.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.ui/web/orion/search/InlineSearchPane.js +++ b/bundles/org.eclipse.orion.client.ui/web/orion/...
Bug <I> - References UI becomes out of sync when you change a file (provide a refresh button)
eclipse_orion.client
train
00bf0e01a12e9ce13adef15e5ddb53700d90bd81
diff --git a/mux_test.go b/mux_test.go index <HASH>..<HASH> 100644 --- a/mux_test.go +++ b/mux_test.go @@ -135,6 +135,33 @@ func TestHost(t *testing.T) { path: "", shouldMatch: false, }, + { + title: "Path route with single pattern with pipe, match", + route: new(Route).Path("/{catego...
Add tests for patterns with pipe closes #<I>
gorilla_mux
train
d5324413664a44da1cbdf671e0fe00b8571c2b4b
diff --git a/lib/java/src/org/apache/thrift/TBaseAsyncProcessor.java b/lib/java/src/org/apache/thrift/TBaseAsyncProcessor.java index <HASH>..<HASH> 100644 --- a/lib/java/src/org/apache/thrift/TBaseAsyncProcessor.java +++ b/lib/java/src/org/apache/thrift/TBaseAsyncProcessor.java @@ -54,8 +54,13 @@ public class TBaseAsyn...
THRIFT-<I>: Fix guaranteed NPE in TBaseAsyncProcessor.java wq# Please enter the commit message for your changes. Lines starting
apache_thrift
train
bac76baaf79f46d3cf23ecc13f8908cfc208bd73
diff --git a/pdftotree/TreeExtract.py b/pdftotree/TreeExtract.py index <HASH>..<HASH> 100644 --- a/pdftotree/TreeExtract.py +++ b/pdftotree/TreeExtract.py @@ -196,10 +196,14 @@ class TreeExtractor(object): for (pnum, pwidth, pheight, top, left, bottom, right) in self.tree[page_num][clust]: ...
Add placeholders for #3 We will need to implement functionality for: 1. Detecting the number of columns in a document based on bboxes 2. Ordering the content in reading order Currently, this just swaps out the inconsistent two-column code we used to have in the TreeStructure repository for a simple top-to-bottom,...
HazyResearch_pdftotree
train
cdc7a5db82ff8d2f47f324ba1acfd69dfd0ecfbe
diff --git a/db/upgrade-X.X-X.Y.sql b/db/upgrade-X.X-X.Y.sql index <HASH>..<HASH> 100644 --- a/db/upgrade-X.X-X.Y.sql +++ b/db/upgrade-X.X-X.Y.sql @@ -49,7 +49,8 @@ DROP PROCEDURE IF EXISTS ValidateVersion; \! echo "altering pki_certs" ALTER TABLE pki_certs - ADD COLUMN IF NOT EXISTS `scep` BOOLEAN DEFAULT FALSE...
New api endpoint /pki/checkrenewal (revoke due certificates and email renewable ones)
inverse-inc_packetfence
train
5352d9eb6d3e47d6418527d804b243003932f01b
diff --git a/core/server/master/src/main/java/alluxio/master/block/DefaultBlockMaster.java b/core/server/master/src/main/java/alluxio/master/block/DefaultBlockMaster.java index <HASH>..<HASH> 100644 --- a/core/server/master/src/main/java/alluxio/master/block/DefaultBlockMaster.java +++ b/core/server/master/src/main/jav...
check it please (#<I>)
Alluxio_alluxio
train
9bf00ab7262959b66172774211a551c0a6429742
diff --git a/lib/sass/selector/sequence.rb b/lib/sass/selector/sequence.rb index <HASH>..<HASH> 100644 --- a/lib/sass/selector/sequence.rb +++ b/lib/sass/selector/sequence.rb @@ -212,10 +212,13 @@ module Sass return unless sseq2.size > 1 # .foo ~ .bar is a superselector of .foo + .bar r...
[Sass] Handle sseqs with nothing after the combinator.
sass_ruby-sass
train
cfb0072e67d1d342f6fe72a668f9cc9a355a4868
diff --git a/examples/form-with-rethinkdb/idp/main.go b/examples/form-with-rethinkdb/idp/main.go index <HASH>..<HASH> 100644 --- a/examples/form-with-rethinkdb/idp/main.go +++ b/examples/form-with-rethinkdb/idp/main.go @@ -7,8 +7,7 @@ import ( "os" "time" - // "github.com/boj/rethinkstore" - "github.com/gorilla/s...
Using rethinkdb as a userdb in provider
janekolszak_idp
train