hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
4e89b6d25ce46c341c7e0c829f2d61e42a42f852
diff --git a/src/YouTube.js b/src/YouTube.js index <HASH>..<HASH> 100644 --- a/src/YouTube.js +++ b/src/YouTube.js @@ -99,7 +99,7 @@ class YouTube extends React.Component { } onReset() { - if (this._internalPlayer) { + if (this._internalPlayer && this._internalPlayer.getIframe()) { this._internalPl...
Only destroy the youtube player if it is initialized If you are very quickly creating and destroying YouTube components, the iframe might not be initialized by the time we want to destroy it, resulting in this error: `Uncaught TypeError: this._internalPlayer.removeEventListener is not a function`. This doesn't seem...
troybetz_react-youtube
train
4144207699997d23ecb69fc733bd4fbf1c28a329
diff --git a/src/ContentfulService.php b/src/ContentfulService.php index <HASH>..<HASH> 100644 --- a/src/ContentfulService.php +++ b/src/ContentfulService.php @@ -18,12 +18,13 @@ class ContentfulService implements ContentfulServiceContract /** - * @param string $apiKey - * @param string $spaceId + ...
Inject the Client into ContentfulService This makes it mockable in projects that use this library
digiaonline_lumen-contentful
train
60b50d1b6012aed45628ff6e1d3cb360143a4168
diff --git a/controller/src/main/java/org/jboss/as/controller/AbstractAddStepHandler.java b/controller/src/main/java/org/jboss/as/controller/AbstractAddStepHandler.java index <HASH>..<HASH> 100644 --- a/controller/src/main/java/org/jboss/as/controller/AbstractAddStepHandler.java +++ b/controller/src/main/java/org/jboss...
Minor api improvment for working with capabilites - takes capabilites defined on resource into account
wildfly_wildfly-core
train
5dd02b1cba0e99e95e7c25560ff4c0999dc15489
diff --git a/danceschool/core/models.py b/danceschool/core/models.py index <HASH>..<HASH> 100644 --- a/danceschool/core/models.py +++ b/danceschool/core/models.py @@ -658,7 +658,7 @@ class Event(EmailRecipientMixin, PolymorphicModel): @property def firstOccurrenceTime(self): if self.firstOccurrence: ...
Use localized timezones for determining day of week, etc.
django-danceschool_django-danceschool
train
59d5019204be37958fd23d7cceefe2b59ca917bd
diff --git a/java/server/test/org/openqa/grid/internal/utils/SelfRegisteringRemoteTest.java b/java/server/test/org/openqa/grid/internal/utils/SelfRegisteringRemoteTest.java index <HASH>..<HASH> 100644 --- a/java/server/test/org/openqa/grid/internal/utils/SelfRegisteringRemoteTest.java +++ b/java/server/test/org/openqa/...
Fixing a grid test: two new status servlets were added recently
SeleniumHQ_selenium
train
15e46334b5152e7b7d135cf24daefc360b193002
diff --git a/test_xbee.py b/test_xbee.py index <HASH>..<HASH> 100755 --- a/test_xbee.py +++ b/test_xbee.py @@ -270,5 +270,32 @@ class TestReadFromDevice(unittest.TestCase): data = xbee.wait_for_frame() self.assertEqual(data, '\x05') +class TestNotImplementedFeatures(unittest.TestCase): + ...
Added tests and implementation to ensure that NotImplementedError is raised if the base XBee class is instantiated and mistakenly used as a derived, device-specific class
niolabs_python-xbee
train
86cdd04671d53be33cc1a6d180662466b457a40f
diff --git a/src/main/java/com/xtremelabs/robolectric/Robolectric.java b/src/main/java/com/xtremelabs/robolectric/Robolectric.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/xtremelabs/robolectric/Robolectric.java +++ b/src/main/java/com/xtremelabs/robolectric/Robolectric.java @@ -3,6 +3,7 @@ package com.xtrem...
Added code to ShadowObjectAnimator to detect when "cancel()" gets called.
robolectric_robolectric
train
23a05f73bd3cdf780ef90580dc6eef2242fc6578
diff --git a/ginga/colors.py b/ginga/colors.py index <HASH>..<HASH> 100644 --- a/ginga/colors.py +++ b/ginga/colors.py @@ -755,7 +755,12 @@ def recalc_color_list(): color_list.sort() def lookup_color(name, format='tuple'): - color = color_dict[name] + color = None + try: + color = color_dict[nam...
Added the exception handling login in lookup_color()
ejeschke_ginga
train
3893b05fda6e442ab7c98ce4ecedda15308d1715
diff --git a/server/src/com/thoughtworks/go/server/security/OauthAuthenticationFilter.java b/server/src/com/thoughtworks/go/server/security/OauthAuthenticationFilter.java index <HASH>..<HASH> 100644 --- a/server/src/com/thoughtworks/go/server/security/OauthAuthenticationFilter.java +++ b/server/src/com/thoughtworks/go/...
Enclosing debug logs with isDebugEnabled to prevent String object construction when unnecessary.
gocd_gocd
train
65d30618878fe90dbc4e1e85b15fd31cd7bb2b0c
diff --git a/test/format_test.rb b/test/format_test.rb index <HASH>..<HASH> 100644 --- a/test/format_test.rb +++ b/test/format_test.rb @@ -60,6 +60,9 @@ class FormatTest < Test::Unit::TestCase format = Format.new(one_channel, 16, 44100) assert_equal(2, format.block_align) + + format = Format.new(on...
Adding more tests for Format.block_align
jstrait_wavefile
train
a8728246dbda35c46612bea1ccd3ad680c377bbc
diff --git a/cake/tests/cases/libs/model/db_acl.test.php b/cake/tests/cases/libs/model/db_acl.test.php index <HASH>..<HASH> 100644 --- a/cake/tests/cases/libs/model/db_acl.test.php +++ b/cake/tests/cases/libs/model/db_acl.test.php @@ -147,12 +147,10 @@ class AclNodeTest extends CakeTestCase { $this->assertEqual($res...
Updated the expectations of the two failing tests. Both pass now. Fixes #<I> git-svn-id: <URL>
cakephp_cakephp
train
1f2b784735bf9b635d4d4f7d146263a906c74c87
diff --git a/lib/ping-promise.js b/lib/ping-promise.js index <HASH>..<HASH> 100644 --- a/lib/ping-promise.js +++ b/lib/ping-promise.js @@ -83,7 +83,8 @@ function probe(addr, config) { if (p.match(/^win/)) { // this is my solution on Chinese Windows8 64bit result = false; - ...
refs #<I>: Fix a bug cause alive in window is always false
danielzzz_node-ping
train
d638bf5b67f1afe9c23b3cd32f2e9d7ae7e17b78
diff --git a/spyderlib/widgets/sourcecode/syntaxhighlighters.py b/spyderlib/widgets/sourcecode/syntaxhighlighters.py index <HASH>..<HASH> 100644 --- a/spyderlib/widgets/sourcecode/syntaxhighlighters.py +++ b/spyderlib/widgets/sourcecode/syntaxhighlighters.py @@ -331,8 +331,10 @@ class PythonSH(BaseSH): ...
Remove comment marker from the source outline for cells
spyder-ide_spyder
train
f0d72477b3c92481440ee05c53a4fb1fd89614f8
diff --git a/rootpy/tree/chain.py b/rootpy/tree/chain.py index <HASH>..<HASH> 100644 --- a/rootpy/tree/chain.py +++ b/rootpy/tree/chain.py @@ -4,6 +4,7 @@ import time from ..io import open as ropen, DoesNotExist from .filtering import EventFilterList from .. import rootpy_globals +from ..util.extras import humanize_...
move humanize_bytes and print_table to util.extras and log info if TTreeCache is enabled
rootpy_rootpy
train
2455fa5be42f581c5de398b4ad0e86588d71ca32
diff --git a/commands/issue.go b/commands/issue.go index <HASH>..<HASH> 100644 --- a/commands/issue.go +++ b/commands/issue.go @@ -135,12 +135,14 @@ func listIssues(cmd *Command, args *Args) { os.Exit(0) } -func formatIssue(issue github.Issue, format string, colorize bool) string { - var assigneeLogin string - if ...
Account for nil User as well.
github_hub
train
fa020a5ec1561896981058e31a704cebdd0f5035
diff --git a/src/Utils.php b/src/Utils.php index <HASH>..<HASH> 100644 --- a/src/Utils.php +++ b/src/Utils.php @@ -16,17 +16,6 @@ class Utils } /** - * Does File Contain - * - * Determine if the file contains a string - * @return boolean - */ - public static function doesFileContain($...
Remove unused doesFileContain
soberwp_controller
train
efe53aab8a008a7a34b650b22695d38c12c3f9e7
diff --git a/cf/net/paginated_resources.go b/cf/net/paginated_resources.go index <HASH>..<HASH> 100644 --- a/cf/net/paginated_resources.go +++ b/cf/net/paginated_resources.go @@ -17,9 +17,9 @@ type PaginatedResources struct { resourceType reflect.Type } -func (this PaginatedResources) Resources() ([]interface{},...
Don't use 'this' as a receiver name
cloudfoundry_cli
train
59144eef21ba873a058c3b046f3068b8029671a7
diff --git a/src/terra/Command/Environment/EnvironmentProxyEnable.php b/src/terra/Command/Environment/EnvironmentProxyEnable.php index <HASH>..<HASH> 100644 --- a/src/terra/Command/Environment/EnvironmentProxyEnable.php +++ b/src/terra/Command/Environment/EnvironmentProxyEnable.php @@ -20,7 +20,7 @@ class EnvironmentPr...
Fixing URL proxy being blocked when using SELinux by adding a label to skip security.
terra-ops_terra-cli
train
4b78574d31b5f19fa269a28a8e18c3a14ff6f54c
diff --git a/modernrpc/handlers/jsonhandler.py b/modernrpc/handlers/jsonhandler.py index <HASH>..<HASH> 100644 --- a/modernrpc/handlers/jsonhandler.py +++ b/modernrpc/handlers/jsonhandler.py @@ -55,10 +55,8 @@ class JSONRPCHandler(RPCHandler): if not isinstance(body, dict): raise RPCInvalidRequest...
JSON-RPC: allow unspecified request id This effectively allows "notification" request, according to the standard
alorence_django-modern-rpc
train
3db902ea2d98c5294f0f7ea203af8cd6a463a16a
diff --git a/parfait-spring/src/test/java/com/custardsource/parfait/spring/SelfStartingMonitoringViewTest.java b/parfait-spring/src/test/java/com/custardsource/parfait/spring/SelfStartingMonitoringViewTest.java index <HASH>..<HASH> 100644 --- a/parfait-spring/src/test/java/com/custardsource/parfait/spring/SelfStartingM...
Add more accurate byteBuffer scan with proper Charset handling based on Cowan's feedback
performancecopilot_parfait
train
c4a2cd8d998cb4f827bdb9f3b0f450da2b13a16a
diff --git a/peyotl/api/taxomachine.py b/peyotl/api/taxomachine.py index <HASH>..<HASH> 100644 --- a/peyotl/api/taxomachine.py +++ b/peyotl/api/taxomachine.py @@ -84,6 +84,9 @@ class _TaxomachineAPIWrapper(_WSWrapper): raise ValueError('"{}" is not a valid context name'.format(context_name)) if no...
bug fix in non-default search and catching bogus names before sending them to taxomachine
OpenTreeOfLife_peyotl
train
5aa882639865b8750079aed2c6b2a381edb2de3f
diff --git a/tests/TalesStringTest.php b/tests/TalesStringTest.php index <HASH>..<HASH> 100644 --- a/tests/TalesStringTest.php +++ b/tests/TalesStringTest.php @@ -30,8 +30,7 @@ class TalesStringTest extends PHPTAL_TestCase { function testSubPathSimple() { $res = PHPTAL_Php_TalesInternal::string('hell...
Changed test to use PHPUnit's regex
phptal_PHPTAL
train
8fd309a5ea551e68ef22b616ac043c58fea0bda0
diff --git a/core/model/fieldtypes/HTMLText.php b/core/model/fieldtypes/HTMLText.php index <HASH>..<HASH> 100755 --- a/core/model/fieldtypes/HTMLText.php +++ b/core/model/fieldtypes/HTMLText.php @@ -25,7 +25,17 @@ class HTMLText extends Text { */ function LimitCharacters($limit = 20, $add = "...") { $value = tr...
BUGFIX: In some circumstances, parts of the entities were cut off thus display the LimitCharacters-ed text incorrectly
silverstripe_silverstripe-framework
train
b775ce22ae4e8f5ee77504e9d9fc82de92150647
diff --git a/django_extensions/management/commands/runserver_plus.py b/django_extensions/management/commands/runserver_plus.py index <HASH>..<HASH> 100644 --- a/django_extensions/management/commands/runserver_plus.py +++ b/django_extensions/management/commands/runserver_plus.py @@ -44,9 +44,7 @@ class Command(BaseComma...
fixed message when werkzeug is not found for runserver_plus
django-extensions_django-extensions
train
0da2b30c8100891ba2357e5a8e4ea384c4d92886
diff --git a/lib/encoding-length.js b/lib/encoding-length.js index <HASH>..<HASH> 100644 --- a/lib/encoding-length.js +++ b/lib/encoding-length.js @@ -3,7 +3,7 @@ const isPlainObject = require('is-plain-object') module.exports = encodingLengthCommon -function encodingLength(obj, schema) { +function encodingLength(...
`encodingLength` support context too.
reklatsmasters_binary-data
train
88167f39a6437e282ff75a6ec30e8081d6d50441
diff --git a/p2p/client_identity.go b/p2p/client_identity.go index <HASH>..<HASH> 100644 --- a/p2p/client_identity.go +++ b/p2p/client_identity.go @@ -7,8 +7,9 @@ import ( // ClientIdentity represents the identity of a peer. type ClientIdentity interface { - String() string // human readable identity - Pubkey() []b...
add privkey to clientIdentity + tests
ethereum_go-ethereum
train
e16f6ed267a470dcf412768a88a76b9710f7ef52
diff --git a/src/components/record/recordPreview/index.js b/src/components/record/recordPreview/index.js index <HASH>..<HASH> 100644 --- a/src/components/record/recordPreview/index.js +++ b/src/components/record/recordPreview/index.js @@ -3,7 +3,7 @@ import * as Rx from 'rx'; let image_enhancer = require('imports?$=jq...
PHRAS-<I> - fix backward navigation in preview
alchemy-fr_Phraseanet-production-client
train
8af1c70a8be17543eb33e9bfbbcdd8371e3201cc
diff --git a/cli/setup.go b/cli/setup.go index <HASH>..<HASH> 100644 --- a/cli/setup.go +++ b/cli/setup.go @@ -16,7 +16,7 @@ import ( const ( RootFlag = "root" HomeFlag = "home" - DebugFlag = "debug" + TraceFlag = "trace" OutputFlag = "output" EncodingFlag = "encoding" ) @@ -36,7 +36,7 @@ func...
Renamed --debug to --trace, used for light-client and basecoin
tendermint_tendermint
train
a0f777196254ef0256b016c011c1f6ae004e3e5d
diff --git a/core/vm/instructions_test.go b/core/vm/instructions_test.go index <HASH>..<HASH> 100644 --- a/core/vm/instructions_test.go +++ b/core/vm/instructions_test.go @@ -525,12 +525,14 @@ func TestOpMstore(t *testing.T) { mem.Resize(64) pc := uint64(0) v := "abcdef00000000000000abba000000000deaf000000c0de001...
core/vm: remove stack.pushN (#<I>)
ethereum_go-ethereum
train
c38a1a498f8979150c389c83edeba7d3493c9fd4
diff --git a/bin/require-command.js b/bin/require-command.js index <HASH>..<HASH> 100755 --- a/bin/require-command.js +++ b/bin/require-command.js @@ -55,12 +55,12 @@ switch (opts.command) { case 'compile': var example = 'require compile ./path/to/file.js --level 2' if (opts.level === null) { - console.log('P...
We switched from using opts.paths[0] to opts.file
marcuswestin_require
train
2c77bbfb4b743904c675ad8474e4e7788e24ab89
diff --git a/src/Model/Behavior/UploadBehavior.php b/src/Model/Behavior/UploadBehavior.php index <HASH>..<HASH> 100644 --- a/src/Model/Behavior/UploadBehavior.php +++ b/src/Model/Behavior/UploadBehavior.php @@ -69,8 +69,13 @@ class UploadBehavior extends Behavior } $file = $entity->get($virt...
Trigger all upload errors. Ref #8
Xety_Cake3-Upload
train
abbee41b7852480ff8552474a147cc5912fe755a
diff --git a/forms/ReadonlyField.php b/forms/ReadonlyField.php index <HASH>..<HASH> 100644 --- a/forms/ReadonlyField.php +++ b/forms/ReadonlyField.php @@ -11,10 +11,43 @@ class ReadonlyField extends FormField { protected $readonly = true; + /** + * Include a hidden field in the HTML for the readonly field + * @...
NEW: Add ReadonlyField::setIncludeHiddenField() The new config setter restores the <I> behaviour of including <input type="hidden"> with a field. Although as a default, this option has security flaws; it is useful in a few circumstances and, if nothing else, is handy to make upgrading sites easier.
silverstripe_silverstripe-framework
train
b77092bf813acc3eb7e342403967cb8b7185beeb
diff --git a/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java b/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java index <HASH>..<HASH> 100644 --- a/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java +++ b/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java @@ -118,6...
Add helper to get 'Location' header response value
kevinsawicki_http-request
train
fc3e3dc245a13bda728ab9e3aadc8c5da5a06ae9
diff --git a/wafer/schedule/admin.py b/wafer/schedule/admin.py index <HASH>..<HASH> 100644 --- a/wafer/schedule/admin.py +++ b/wafer/schedule/admin.py @@ -9,17 +9,23 @@ from wafer.pages.models import Page # These are functions to simplify testing def validate_slots(): """Find any slots that overlap""" - pass ...
Rename function to better reflect aim - expand description to match
CTPUG_wafer
train
0bb13c0f040516e62158979e7c6665e8b678eafb
diff --git a/command/agent/config_parse_test.go b/command/agent/config_parse_test.go index <HASH>..<HASH> 100644 --- a/command/agent/config_parse_test.go +++ b/command/agent/config_parse_test.go @@ -286,7 +286,19 @@ func TestConfig_Parse(t *testing.T) { if (err != nil) != tc.Err { t.Fatalf("file: %s\n\n%s", tc...
fix up test failure due to keyloader instantiated on tls config during parsing
hashicorp_nomad
train
822cb3b72954056b6a9952f21e090be5a46fd50a
diff --git a/src/main/java/com/stratio/qa/specs/MarathonSpec.java b/src/main/java/com/stratio/qa/specs/MarathonSpec.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/stratio/qa/specs/MarathonSpec.java +++ b/src/main/java/com/stratio/qa/specs/MarathonSpec.java @@ -254,16 +254,16 @@ public class MarathonSpec exten...
[SAAS-<I>] Fix step to get IP (internal and external) from Marathon in DCOS <I> (#<I>)
Stratio_bdt
train
4dfbb05e7f2de50a767c33c7258730e7ebec8999
diff --git a/src/Router.js b/src/Router.js index <HASH>..<HASH> 100644 --- a/src/Router.js +++ b/src/Router.js @@ -203,8 +203,8 @@ function Router(declarativeStates) { function notFound(state) { log('State not found: {0}', state); - if (options.notFound) - setState(leafStates[options.notFound] || opt...
Fix: When entering the notFound state, an RTE is thrown because it has null params
AlexGalays_abyssa-js
train
5d0a9c08037811ea153abfcd5e58f5f7db8f9751
diff --git a/cmd/client-s3.go b/cmd/client-s3.go index <HASH>..<HASH> 100644 --- a/cmd/client-s3.go +++ b/cmd/client-s3.go @@ -53,7 +53,6 @@ type s3Client struct { } const ( - amazonHostName = "s3.amazonaws.com" amazonHostNameAccelerated = "s3-accelerate.amazonaws.com" googleHostName = "...
Make sure to preserve region specific URLs (#<I>) This is to ensure that restricted access to certain buckets is allowed on certain regions. This is a continuation of last commit
minio_mc
train
e30574bb8f9cd677c2dcc6c9bb5ec36378de3f61
diff --git a/test/support/matchers.rb b/test/support/matchers.rb index <HASH>..<HASH> 100644 --- a/test/support/matchers.rb +++ b/test/support/matchers.rb @@ -56,14 +56,14 @@ module Minitest msg = message(msg) do "Expected #{mu_pp(original)} to include #{mu_pp(given)} in order" end - assert ...
Switch param order for consistency It's already hard enough to learn the order of minitest matchers, let alone if we use different orders.
deivid-rodriguez_byebug
train
7be97168840431090d73552d8c4477e6447a2e9e
diff --git a/src/Packages/Starter/app/Http/Requests/UserInviteRequest.php b/src/Packages/Starter/app/Http/Requests/UserInviteRequest.php index <HASH>..<HASH> 100644 --- a/src/Packages/Starter/app/Http/Requests/UserInviteRequest.php +++ b/src/Packages/Starter/app/Http/Requests/UserInviteRequest.php @@ -14,7 +14,7 @@ cla...
Change auth on team invite request to check if the user is team admin rather that system admin
GrafiteInc_Builder
train
357cb2c97fb2098d4a973d43c7c4fc6c1acb9b46
diff --git a/cdkmod/cdk/__init__.py b/cdkmod/cdk/__init__.py index <HASH>..<HASH> 100644 --- a/cdkmod/cdk/__init__.py +++ b/cdkmod/cdk/__init__.py @@ -28,16 +28,17 @@ Options: import subprocess, zipfile from os.path import dirname, basename, join, abspath, isfile, isdir, expanduser -from os import mkdir, unlink +fr...
Complain if selected theme doesn't exist
twitter_cdk
train
36b04a3ef1ca9a865a1f0f7a65824d457342c0bf
diff --git a/test/unit/common_definitions.py b/test/unit/common_definitions.py index <HASH>..<HASH> 100644 --- a/test/unit/common_definitions.py +++ b/test/unit/common_definitions.py @@ -59,7 +59,7 @@ class URLTesterTestBaseMixin(object): self._test_any_match_returns_false(self.valid_urls) -class UrlTester...
Rename UrlTesterTestMixin to URLTesterTestMixin
piotr-rusin_spam-lists
train
b722d5165f2af62c34d95326cace18256fcba932
diff --git a/src/lib/KevinGH/Amend/Command.php b/src/lib/KevinGH/Amend/Command.php index <HASH>..<HASH> 100644 --- a/src/lib/KevinGH/Amend/Command.php +++ b/src/lib/KevinGH/Amend/Command.php @@ -165,6 +165,8 @@ */ protected function replace($temp) { + $perms = fileperms($_SERVER['...
Preserving permissions of replaced file.
deployphp_phar-update
train
d5b386ac1b36d2fa082e2fc967a7719538026522
diff --git a/pymc/Matplot.py b/pymc/Matplot.py index <HASH>..<HASH> 100755 --- a/pymc/Matplot.py +++ b/pymc/Matplot.py @@ -420,7 +420,7 @@ def plot(data, name, format='png', suffix='', path='./', common_scale=True, data # Current subplot number _num = i % _rows + 1 # Final subplot...
make Matplot.plot save all figures in a multifigure plot
pymc-devs_pymc
train
84b5477536461fd53e7664b19933c6cda1d597db
diff --git a/oscrypto/_openssl/asymmetric.py b/oscrypto/_openssl/asymmetric.py index <HASH>..<HASH> 100644 --- a/oscrypto/_openssl/asymmetric.py +++ b/oscrypto/_openssl/asymmetric.py @@ -692,7 +692,7 @@ def load_public_key(source): source must be a byte string, unicode string or asn1crypto.key...
Line <I>: corrected parameter name (#<I>) Resolves the following: UnboundLocalError: local variable 'public_key' referenced before assignment
wbond_oscrypto
train
3e7822980f3172108fa765762a192e35eaa7cef4
diff --git a/build/export-exchanges.js b/build/export-exchanges.js index <HASH>..<HASH> 100644 --- a/build/export-exchanges.js +++ b/build/export-exchanges.js @@ -109,7 +109,7 @@ function exportSupportedAndCertifiedExchanges (exchanges, { allExchangesPaths, c // ----------------------------------------------------...
build/export-exchanges okcoinusd → okcoin, okex3 → okex #<I>
ccxt_ccxt
train
c5ad9b25bf67d381e217a0183448f74bd20b584d
diff --git a/src/imagetilesource.js b/src/imagetilesource.js index <HASH>..<HASH> 100644 --- a/src/imagetilesource.js +++ b/src/imagetilesource.js @@ -72,6 +72,13 @@ $.TileSource.apply(this, [options]); }; + + /* IE8 fix for tileSources type: 'image' */ + $.getNatural = function (DOMelement) {...
IE8 fix for tileSources type: 'image'
openseadragon_openseadragon
train
ccc60bde94c6dd7630d81ba5882b674e0d29498d
diff --git a/andes/models/distributed/dgprct.py b/andes/models/distributed/dgprct.py index <HASH>..<HASH> 100644 --- a/andes/models/distributed/dgprct.py +++ b/andes/models/distributed/dgprct.py @@ -4,7 +4,7 @@ Distributed energy resource protection model base. from andes.core.param import IdxParam, NumParam, ExtParam...
Added some observations, and will remove later.
cuihantao_andes
train
32e2028e62d7c3273c7303c79fa8700a4e30a58c
diff --git a/packages/neos-ui-guest-frame/src/InlineUI/index.js b/packages/neos-ui-guest-frame/src/InlineUI/index.js index <HASH>..<HASH> 100644 --- a/packages/neos-ui-guest-frame/src/InlineUI/index.js +++ b/packages/neos-ui-guest-frame/src/InlineUI/index.js @@ -3,11 +3,15 @@ import PropTypes from 'prop-types'; import...
BUGFIX: don't show NodeToolbar for document nodes
neos_neos-ui
train
fb522959999baa1a14dc7790744852c9e90ca1c8
diff --git a/src/main/java/com/lazerycode/jmeter/configuration/JMeterProcessJVMSettings.java b/src/main/java/com/lazerycode/jmeter/configuration/JMeterProcessJVMSettings.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/lazerycode/jmeter/configuration/JMeterProcessJVMSettings.java +++ b/src/main/java/com/lazeryc...
Allowing injection of Java to Jmeter
jmeter-maven-plugin_jmeter-maven-plugin
train
3cd70f00e4f4b79ef7a15470bc7bf2f3e7a3142c
diff --git a/google-cloud-spanner/lib/google/cloud/spanner/pool.rb b/google-cloud-spanner/lib/google/cloud/spanner/pool.rb index <HASH>..<HASH> 100644 --- a/google-cloud-spanner/lib/google/cloud/spanner/pool.rb +++ b/google-cloud-spanner/lib/google/cloud/spanner/pool.rb @@ -59,6 +59,7 @@ module Google end ...
Create new sessions/transactions outside of mutex
googleapis_google-cloud-ruby
train
b0409b55c673c63c366f6a15217cca2991ef8fc9
diff --git a/lib/ronin/program/commands/install.rb b/lib/ronin/program/commands/install.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/program/commands/install.rb +++ b/lib/ronin/program/commands/install.rb @@ -30,30 +30,31 @@ module Ronin command :install - options('URI [options]') do |opts| - o...
Refactored the InstallCommand.
ronin-ruby_ronin
train
84dc163089881dad55ba1cf9d9bbbe1ee573bf78
diff --git a/builtin/providers/google/resource_compute_snapshot.go b/builtin/providers/google/resource_compute_snapshot.go index <HASH>..<HASH> 100644 --- a/builtin/providers/google/resource_compute_snapshot.go +++ b/builtin/providers/google/resource_compute_snapshot.go @@ -40,24 +40,24 @@ func resourceComputeSnapshot(...
Review by @paddyforan: Rename sourcedisk to source_disk
hashicorp_terraform
train
7249ed0af042cf3b902b2a84ff218533ae628fc7
diff --git a/packages/shared-components/src/components/Steps/styles/StepContent.js b/packages/shared-components/src/components/Steps/styles/StepContent.js index <HASH>..<HASH> 100644 --- a/packages/shared-components/src/components/Steps/styles/StepContent.js +++ b/packages/shared-components/src/components/Steps/styles/...
recolor and fix the size of steps
Bandwidth_shared-components
train
1261c641907237787f20886d999d4eb467b3a59d
diff --git a/component-4-comp-2-lookup.js b/component-4-comp-2-lookup.js index <HASH>..<HASH> 100644 --- a/component-4-comp-2-lookup.js +++ b/component-4-comp-2-lookup.js @@ -7,7 +7,7 @@ ** file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -/* top-level API: lookup component by path */ +/* lookup comp...
refactor lookup step function into own function
rse_componentjs
train
97add4620afa35f203e5295fbfac20e9ed6524d0
diff --git a/packages/internal-test-helpers/lib/module-for.js b/packages/internal-test-helpers/lib/module-for.js index <HASH>..<HASH> 100644 --- a/packages/internal-test-helpers/lib/module-for.js +++ b/packages/internal-test-helpers/lib/module-for.js @@ -62,6 +62,8 @@ export default function moduleFor(description, Test...
Support @only => QUnit.only
emberjs_ember.js
train
c3ee8ecc4d211d456a4afc092ca2af679ed8bbc1
diff --git a/picopt/detect_format.py b/picopt/detect_format.py index <HASH>..<HASH> 100644 --- a/picopt/detect_format.py +++ b/picopt/detect_format.py @@ -28,7 +28,6 @@ def is_format_selected(image_format, formats, progs): was selected by the command line arguments""" intersection = formats & Settings.formats...
remove debugging print from detect_format
ajslater_picopt
train
2fdc949f40b27ad934bb67fc8e55755560d7231a
diff --git a/src/zh-TW/validation.php b/src/zh-TW/validation.php index <HASH>..<HASH> 100644 --- a/src/zh-TW/validation.php +++ b/src/zh-TW/validation.php @@ -22,29 +22,29 @@ return [ 'array' => ':attribute 必須為陣列。', 'before' => ':attribute 必須要在 :date 之前。', 'between' ...
Update validation.php Hello, just updated some translations of Taiwanese Chinese
caouecs_Laravel-lang
train
6a55053422b26bdf7f0cdf0323823b65caee2dc2
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,7 @@ setup( 'python-swiftclient>=1.4.0', 'python-keystoneclient>=0.2.3', 'six', + 'python-magic>=0.4.10', ], zip_safe=False, classifiers=[ diff --git a/swift/storage.p...
added option to get mimetype from file content
dennisv_django-storage-swift
train
590c377e7816212adb7b76b4aab127a4a7badcae
diff --git a/pythonforandroid/bootstraps/pygame/build/build.py b/pythonforandroid/bootstraps/pygame/build/build.py index <HASH>..<HASH> 100755 --- a/pythonforandroid/bootstraps/pygame/build/build.py +++ b/pythonforandroid/bootstraps/pygame/build/build.py @@ -68,7 +68,7 @@ def render(template, dest, **kwargs): temp...
Further fixes for running under py3
kivy_python-for-android
train
4a1549bdb3dd2f35a29238ebb7d0be33cb078140
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -7,8 +7,12 @@ module.exports = postcss.plugin('postcss-parent-selector', function(opts) { return function(root, result) { root.walkRules(rule => { + if (rule.parent && rule.parent.type === 'atrule' &...
fixed error where the parent class was being added to @keyframe contents
domwashburn_postcss-parent-selector
train
a96f34a47a0398f64ec4b1d14c4bd5ba26cd9505
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -58,30 +58,32 @@ function displayCoverageReport (display) { gulp.task('browserify', function (cb) { function browserifyBuild (isStandalone, useDebug) { - return new Promise(function (resolve, reject) { - ...
Fixed Gulp build process for browser testing
whitlockjc_json-refs
train
43a0d82f8dc9e40e89d07f5cc6bf9ede27918c68
diff --git a/www/src/pages/components/modal.js b/www/src/pages/components/modal.js index <HASH>..<HASH> 100644 --- a/www/src/pages/components/modal.js +++ b/www/src/pages/components/modal.js @@ -69,7 +69,7 @@ export default withLayout(function ModalSection({ data }) { </LinkedHeading> <p> Below i...
Fix spelling. (#<I>) "demostrate" -> "demonstrate".
react-bootstrap_react-bootstrap
train
79831f9a40be3f26ec1408fe343987e5bf229699
diff --git a/loam/manager.py b/loam/manager.py index <HASH>..<HASH> 100644 --- a/loam/manager.py +++ b/loam/manager.py @@ -314,19 +314,20 @@ class ConfigurationManager: for sub, opt, meta in self.defaults_(): self[sub][opt] = meta.default - def create_config_(self, update=False): + def cre...
create_config_ method learned the index argument
amorison_loam
train
9989dab261fd9673a0996de029c6c2cb7e6e9a3c
diff --git a/ensutils.js b/ensutils.js index <HASH>..<HASH> 100644 --- a/ensutils.js +++ b/ensutils.js @@ -905,4 +905,5 @@ var resolverContract = web3.eth.contract([ "payable": false, "type": "fallback" } -]); \ No newline at end of file +]); +var publicResolver = resolverContract.at('0x71e122fc87aa184b966...
Add publicResolver instance available on testnet
ensdomains_ens
train
21f265528074690eaa287037b5d41066b5cb4dcf
diff --git a/validator_watcher_copy_test.go b/validator_watcher_copy_test.go index <HASH>..<HASH> 100644 --- a/validator_watcher_copy_test.go +++ b/validator_watcher_copy_test.go @@ -1,5 +1,4 @@ -// +build go1.3 -// +build !plan9,!solaris,!windows +// +build go1.3,!plan9,!solaris,!windows // Turns out you can't copy...
Fix unsupported WatchForUpdates and build tags Closes #<I>. The `go<I>` constraint has been updated to `!go<I>` per <URL>` in `watcher_unsupported.go` was stale.
bitly_oauth2_proxy
train
7aa83cb7b8903422bb2530042f11be7366b261bb
diff --git a/src/pixi/renderers/canvas/CanvasRenderer.js b/src/pixi/renderers/canvas/CanvasRenderer.js index <HASH>..<HASH> 100644 --- a/src/pixi/renderers/canvas/CanvasRenderer.js +++ b/src/pixi/renderers/canvas/CanvasRenderer.js @@ -240,10 +240,11 @@ PIXI.CanvasRenderer.prototype.render = function(stage) } ...
Added frame clear back in for now..
pixijs_pixi.js
train
a61f5ac5e28ccb566bf463baa312aca032e748ec
diff --git a/lib/dapplerc.js b/lib/dapplerc.js index <HASH>..<HASH> 100644 --- a/lib/dapplerc.js +++ b/lib/dapplerc.js @@ -13,9 +13,9 @@ module.exports = class DappleRC { static writeSync(path, data) { return fs.writeYamlSync(path, data); } - - validateSelf() { - var valid = tv4.validate( thi...
generate and validate dapplerc with json-schema
dapphub_dapple
train
4c08c7acbe5b39a96042651426884a79b1e29d5f
diff --git a/pyaas/web/application.py b/pyaas/web/application.py index <HASH>..<HASH> 100644 --- a/pyaas/web/application.py +++ b/pyaas/web/application.py @@ -62,6 +62,10 @@ class Application(tornado.web.Application): if pyaas.args.debug: self.settings['debug'] = True + self.patterns....
with debug enabled expose src directory for javascript maps
moertle_pyaas
train
7dee0e50ce8a6c84499bb9670bf469016010801a
diff --git a/lib/PathParser.js b/lib/PathParser.js index <HASH>..<HASH> 100755 --- a/lib/PathParser.js +++ b/lib/PathParser.js @@ -105,6 +105,12 @@ class PathParser { const handler = this._handler; const methodName = PathParser.METHODNAME[mode]; + // convert types for ...
Cast arc flags to booleans
thelonious_kld-path-parser
train
98174429abd5865ed698f29bec59299290fb7e05
diff --git a/public/js/editors/libraries.js b/public/js/editors/libraries.js index <HASH>..<HASH> 100644 --- a/public/js/editors/libraries.js +++ b/public/js/editors/libraries.js @@ -108,8 +108,8 @@ var libraries = [ { 'url': [ '//code.jquery.com/jquery.min.js', - '//maxcdn.bootstrapcdn.com/bootstra...
Update Bootstrap *latest* library to version <I> This updates urls of Bootstrap CDNs to latest <I> version urls. Please see: <URL>
jsbin_jsbin
train
f6c2e8aec7d0b9d7606f9734b183b2cc8c5a0634
diff --git a/lib/macho/load_commands.rb b/lib/macho/load_commands.rb index <HASH>..<HASH> 100644 --- a/lib/macho/load_commands.rb +++ b/lib/macho/load_commands.rb @@ -106,29 +106,17 @@ module MachO :LC_LINKER_OPTIMIZATION_HINT => "LinkeditDataCommand" } - # pagezero segment name - SEG_PAGEZERO = "__PAGEZERO" - -...
convert segment/section name constants into SEGMENT_NAMES and SECTION_NAMES hashes
Homebrew_ruby-macho
train
ff7e5fb4f5df957aae1cec1f26fc543b6725e329
diff --git a/example.py b/example.py index <HASH>..<HASH> 100644 --- a/example.py +++ b/example.py @@ -14,7 +14,7 @@ import threading import logging from limpyd_jobs import STATUSES -from limpyd_jobs.models import Queue, Job +from limpyd_jobs.models import Queue, Job, Error from limpyd_jobs.workers import Worker, ...
Add a mixin to define database and namespace in example.py (and clean data at the end of the script)
limpyd_redis-limpyd-jobs
train
d86e59c340c4cecacba41a1b2772cbd3ce8b7acc
diff --git a/src/main/java/me/legrange/mikrotik/ApiConnection.java b/src/main/java/me/legrange/mikrotik/ApiConnection.java index <HASH>..<HASH> 100644 --- a/src/main/java/me/legrange/mikrotik/ApiConnection.java +++ b/src/main/java/me/legrange/mikrotik/ApiConnection.java @@ -133,16 +133,6 @@ public abstract class ApiCon...
Removed getTimeout() until somebody wants it. Don't want bloat
GideonLeGrange_mikrotik-java
train
3d57e15ab5be3161309dece14b519604d1235dea
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -59,6 +59,7 @@ setup(name='bika.lims', 'collective.wtf', 'WeasyPrint==0.19.2', 'collective.progressbar', + 'z3c.unconfigure==1.0.1', ], extras_require={ 'test'...
Added z3c.unconfigure as a new installation require
senaite_senaite.core
train
2942cea294fc1fe18b6f6e934ea8c6cb09cabc37
diff --git a/changes.txt b/changes.txt index <HASH>..<HASH> 100644 --- a/changes.txt +++ b/changes.txt @@ -1,3 +1,6 @@ +0.0.9 + - add support for settings/updating url attribute for message_threads + 0.0.8 - add support for updating last request time for user through either last_request_at or last_impression_at di...
Add ability to set/update url for message_threads
intercom_intercom-ruby
train
cd93114d556d76137a811d3f0492804c4662a4fb
diff --git a/caas/broker.go b/caas/broker.go index <HASH>..<HASH> 100644 --- a/caas/broker.go +++ b/caas/broker.go @@ -19,6 +19,7 @@ import ( "github.com/juju/juju/core/network" "github.com/juju/juju/core/status" "github.com/juju/juju/core/watcher" + "github.com/juju/juju/docker" "github.com/juju/juju/environs"...
Add caasmodelconfigmanager worker to model manifolds;
juju_juju
train
c995ceacd1434058d61eb2e1185139ddcde54b27
diff --git a/tests/ImageTests.php b/tests/ImageTests.php index <HASH>..<HASH> 100755 --- a/tests/ImageTests.php +++ b/tests/ImageTests.php @@ -202,6 +202,19 @@ class ImageTests extends \PHPUnit_Framework_TestCase } /** + * Testing Gaussian blur filter. + */ + public function testGaussianBlur() { ...
Add a simple test to check that filter is working.
Gregwar_Image
train
22cdf78dfd42d76306950cfef83558e46a89551f
diff --git a/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php b/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php index <HASH>..<HASH> 100644 --- a/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php +++ b/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php @@ -17,13 +17,7 @@ abstract class AbstractRetriever imple...
remove abstract declaration of 'retrieve' which duplicated interface declaration
justinrainbow_json-schema
train
625f2f1fe5fb01022e82f934c17cc32ab5ed17cf
diff --git a/lib/mongoid/config.rb b/lib/mongoid/config.rb index <HASH>..<HASH> 100644 --- a/lib/mongoid/config.rb +++ b/lib/mongoid/config.rb @@ -135,11 +135,7 @@ module Mongoid #:nodoc # @since 2.0.2 def purge! master.collections.map do |collection| - begin - collection.drop if collec...
When on travis, attempt to delete all instead of purge
mongodb_mongoid
train
0132c5badd317f762218dd046a8dd55d3196b3df
diff --git a/spec/app.rb b/spec/app.rb index <HASH>..<HASH> 100644 --- a/spec/app.rb +++ b/spec/app.rb @@ -48,7 +48,7 @@ describe 'app' do before_time = Time.now @app.after 0.01 do after_time = Time.now - (after_time - before_time).should.be >= 0.01 + (after_time - before_time).should.be >= 0...
add serious fuzz to the timer, but still testing for some accuracy
infinitered_rmq
train
4659cf85109841bc5a73e31dc26d8bf9b96b3a9c
diff --git a/lib/model/type/integer.js b/lib/model/type/integer.js index <HASH>..<HASH> 100644 --- a/lib/model/type/integer.js +++ b/lib/model/type/integer.js @@ -58,7 +58,7 @@ class ModelTypeInteger extends ModelType { definition.max = min; } - const { min, max } = definition; + const { min, max, step }...
adding support for defining stepping on numeric values
hitchyjs_odem
train
e240ab9ad0f999f383e0ed674600d48705442c71
diff --git a/src/session.js b/src/session.js index <HASH>..<HASH> 100644 --- a/src/session.js +++ b/src/session.js @@ -27,7 +27,6 @@ class Session { sub: this.subscribe.bind(this), unsub: this.unsubscribe.bind(this), connect: this.connect.bind(this), - pong: this.pong.bind(this), ping: ...
Remove reference to old pong handler
mixmaxhq_publication-server
train
daaa98ea5e4c45d3063b3cb1f14b75f15377de46
diff --git a/rsocket-transport/src/main/java/io/scalecube/services/transport/rsocket/DefaultEventExecutorChooser.java b/rsocket-transport/src/main/java/io/scalecube/services/transport/rsocket/DefaultEventExecutorChooser.java index <HASH>..<HASH> 100644 --- a/rsocket-transport/src/main/java/io/scalecube/services/transpo...
Fixed bug in default event executor chooser
scalecube_scalecube-services
train
a9482d75217d0ae1ad8220515ed22a9245a822fc
diff --git a/src/org/junit/internal/requests/ClassRequest.java b/src/org/junit/internal/requests/ClassRequest.java index <HASH>..<HASH> 100644 --- a/src/org/junit/internal/requests/ClassRequest.java +++ b/src/org/junit/internal/requests/ClassRequest.java @@ -1,8 +1,7 @@ package org.junit.internal.requests; -import j...
Better error message when a custom runner has a wrongly-signatured constructor
junit-team_junit4
train
884c20006a26f202d35f5dca846c38a0e8a67f5c
diff --git a/src/Bynder/Api/Impl/AssetBankManager.php b/src/Bynder/Api/Impl/AssetBankManager.php index <HASH>..<HASH> 100644 --- a/src/Bynder/Api/Impl/AssetBankManager.php +++ b/src/Bynder/Api/Impl/AssetBankManager.php @@ -24,12 +24,12 @@ class AssetBankManager implements IAssetBankManager /** * @var IOauthR...
Issue <I> - add protected methods Allows to extend easily the Bynder SDK
Bynder_bynder-php-sdk
train
0cdd19db8bfed8387298f65b4ef2bbe40a6a2894
diff --git a/test/integration/index.js b/test/integration/index.js index <HASH>..<HASH> 100644 --- a/test/integration/index.js +++ b/test/integration/index.js @@ -85,33 +85,6 @@ export async function ready (mocha, native = true, withAccounts = false) { }) } -export const WindowPostMessageFake = (name) => ({ - na...
rpc tests: Inline dependency used in one place
aeternity_aepp-sdk-js
train
62ff2bd5b5326a1abf38d8be4f8b7c31554959e5
diff --git a/storage/src/main/java/org/openbase/jul/storage/registry/AbstractRegistry.java b/storage/src/main/java/org/openbase/jul/storage/registry/AbstractRegistry.java index <HASH>..<HASH> 100644 --- a/storage/src/main/java/org/openbase/jul/storage/registry/AbstractRegistry.java +++ b/storage/src/main/java/org/openb...
registration of dependencies on remoteRegistries now throws a notSupportedException
openbase_jul
train
bcb822c3906a0ffad5d2bcd56f1aa262bd08cd70
diff --git a/api-response.go b/api-response.go index <HASH>..<HASH> 100644 --- a/api-response.go +++ b/api-response.go @@ -502,10 +502,11 @@ func writeErrorResponse(w http.ResponseWriter, req *http.Request, errorCode APIE setCommonHeaders(w) // write Header w.WriteHeader(error.HTTPStatusCode) - writeErrorResponse...
Send XML header before the first of whitespace chars (#<I>) * Sent XML header before the first of whitespace chars XML parsing fails in aws cli due to unexpected whitespace character. To fix this, we send the xml header before we send the first whitespace character, if any. * Fix race between sendWhiteSpaceCha...
minio_minio
train
205b2bf06e895c51b58cd5e5773c1be9556f3f93
diff --git a/template/app/view/comments/Index.js b/template/app/view/comments/Index.js index <HASH>..<HASH> 100644 --- a/template/app/view/comments/Index.js +++ b/template/app/view/comments/Index.js @@ -2,7 +2,7 @@ * Container for recent comments listing. */ Ext.define('Docs.view.comments.Index', { - extend: 'E...
Fix regression of guides page styles. The main styles were restricted to panel body, but guides and others were containers, not panels, so the styles did not get applied. Now guides, videos, comments are all panels.
senchalabs_jsduck
train
7d0c5a612f1c540cba8bcebe8088d0f525d1498e
diff --git a/test/test_xmlmap/test_core.py b/test/test_xmlmap/test_core.py index <HASH>..<HASH> 100755 --- a/test/test_xmlmap/test_core.py +++ b/test/test_xmlmap/test_core.py @@ -17,7 +17,7 @@ #!/usr/bin/env python from lxml import etree -from os import path +import os import unittest import tempfile @@ -319,13...
skip all unit tests that require schemas when no http proxy is configured
emory-libraries_eulxml
train
4a57b076edc28bf602e9ab1e8f8ef38f2d553359
diff --git a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/query/ReplicationIndexTest.java b/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/query/ReplicationIndexTest.java index <HASH>..<HASH> 100644 --- a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/query/Replicati...
ISPN-<I> Data not indexed during state transfer in server mode * move creation of ProtobufValueWrapperSearchWorkCreator to cacheStarting event
infinispan_infinispan
train
db1b70fbbba63b91dbcaff414bfb7aa932a6635a
diff --git a/server.js b/server.js index <HASH>..<HASH> 100644 --- a/server.js +++ b/server.js @@ -58,14 +58,14 @@ bundles.on('allLoaded', function(allbundles) { } if (!allbundles[i].bundleDependencies) { - log.info("[server.js] Bundle %s has extension with no dependencies", a...
whoops, accidentally committed some debugging changes
nodecg_nodecg
train
1d636c61ac6791a7145fac53a75109c2b5adbf41
diff --git a/face/geomajas-face-puregwt/client-impl/src/main/java/org/geomajas/puregwt/client/gfx/GfxUtilImpl.java b/face/geomajas-face-puregwt/client-impl/src/main/java/org/geomajas/puregwt/client/gfx/GfxUtilImpl.java index <HASH>..<HASH> 100644 --- a/face/geomajas-face-puregwt/client-impl/src/main/java/org/geomajas/p...
PURE-<I>: When drawing an object on the map using a worldcontainer there are rounding errors when rendering
geomajas_geomajas-project-server
train
9f864b3f36d2db29cb86d49381796b204be89fe8
diff --git a/lib/aruba/cucumber/command.rb b/lib/aruba/cucumber/command.rb index <HASH>..<HASH> 100644 --- a/lib/aruba/cucumber/command.rb +++ b/lib/aruba/cucumber/command.rb @@ -80,7 +80,7 @@ When(/^I stop the command(?: started last)? if (output|stdout|stderr) contains:$ sleep 0.1 end end - resc...
TimeoutError is deprecated in favor of Timeout::Error
cucumber_aruba
train
b21c1020c390a37d5edf2c1ebba3a3d4ff3653f4
diff --git a/components/PaginationBoxView.js b/components/PaginationBoxView.js index <HASH>..<HASH> 100644 --- a/components/PaginationBoxView.js +++ b/components/PaginationBoxView.js @@ -11,6 +11,7 @@ var PaginationBoxView = React.createClass({ previousLabel: React.PropTypes.string, nextLabel: React.P...
Add a callback when a new page is selected
AdeleD_react-paginate
train
4ec53746cce52a29abd9b51fef72178018384797
diff --git a/library/src/main/java/com/sksamuel/jqm4gwt/list/JQMListItem.java b/library/src/main/java/com/sksamuel/jqm4gwt/list/JQMListItem.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/com/sksamuel/jqm4gwt/list/JQMListItem.java +++ b/library/src/main/java/com/sksamuel/jqm4gwt/list/JQMListItem.java @@ -2...
JQMListItem - image element should be under anchor (in controlgroup mode).
jqm4gwt_jqm4gwt
train
6a1472371f3a39b8f69fefe49e35671f44c3cec8
diff --git a/USERS.md b/USERS.md index <HASH>..<HASH> 100644 --- a/USERS.md +++ b/USERS.md @@ -49,6 +49,7 @@ Currently, the following organizations are **officially** using Argo CD: 1. [END.](https://www.endclothing.com/) 1. [Energisme](https://energisme.com/) 1. [Fave](https://myfave.com) +1. [Fonoa](https://www.fo...
Fix Kubernetes labels normalization for Prometheus (#<I>) * When adding Kubernetes labels as Prometheus labels, replace with all the invalid Prometheus label chars
argoproj_argo-cd
train
cfee95511f780da8addfd98cf1f256526732a2e0
diff --git a/docs/api/cozy-client.md b/docs/api/cozy-client.md index <HASH>..<HASH> 100644 --- a/docs/api/cozy-client.md +++ b/docs/api/cozy-client.md @@ -333,6 +333,16 @@ we have in the store.</p> <dd></dd> <dt><a href="#PermissionItem">PermissionItem</a> : <code>object</code></dt> <dd></dd> +<dt><a href="#Permissi...
feat: Add isShortcutCreated to permission's model
cozy_cozy-client
train
c08088b640002ebcf0cc34a207bb386ac467b3e1
diff --git a/compare.py b/compare.py index <HASH>..<HASH> 100644 --- a/compare.py +++ b/compare.py @@ -1368,7 +1368,7 @@ def bootstrap(data_sets, num_samp=1000): def bootstrap_moment(data1, data2, moment, CI=.95, num_samp=1000): ''' - A bootstrap two-sample test of kurtosis or kurtosis. Returns the test_stat...
Adding the ability to bootstrap moments
jkitzes_macroeco
train